Interface DialobSessionUpdateHook


public interface DialobSessionUpdateHook
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    hookAction(DialobSession dialobSession, Command<?> update, Consumer<Command<?>> delegate)
    All actions to session are passed through this hook.
  • Method Details

    • hookAction

      void hookAction(@NonNull DialobSession dialobSession, @NonNull Command<?> update, Consumer<Command<?>> delegate)
      All actions to session are passed through this hook. Implementation can filter, replace or add updates to be processed.
      Parameters:
      dialobSession - current DialobSession
      update - update to check
      delegate - delegates update for actual evaluation