Interface EventLoopHandle


public interface EventLoopHandle
Netty-free handle for one connection's serialized event loop.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    execute(Runnable operation)
    Executes an operation on this event loop.
    boolean
    Reports whether the caller is currently on this event loop.
  • Method Details

    • inEventLoop

      boolean inEventLoop()
      Reports whether the caller is currently on this event loop.
      Returns:
      whether the caller is on the event loop
    • execute

      void execute(Runnable operation)
      Executes an operation on this event loop.
      Parameters:
      operation - operation to execute