Reactor.getHandler

@return the handler for this reactor. Every event the reactor sees, which is not handled by a child of the reactor (such as a timer, connection, acceptor, or selector) is passed to this handler. To receive these events, it is recommend that you associate a child handler with the handler returned by this method. For example: <pre> getHandler().add(yourHandler); </pre>

interface Reactor
getHandler
()

Meta