Registers a new event handler to handle incoming event messages. The handler is only called for a connection if for the give protocol no ProtocolHandler was registered on the connection level.
name of the protocol to register the handler for
name of the event (also referred to as topic. See Topics for some known ones)
function to be called for every occurring event
Registers a new request handler to handle incoming request messages. The handler is only called for a connection if for the give protocol no ProtocolHandler was registered on the connection level.
name of the protocol to register the handler for
name of the request (also referred to as topic. See Topics for some known ones)
function to be called for every occurring request
Removes a registered event handler.
name of the protocol to unregister the handler for
name of the event (also referred to as topic. See Topics for some known ones)
registered event handler
Removes a registered request handler.
name of the protocol to unregister the handler for
name of the request (also referred to as topic. See Topics for some known ones)
registered request handler
DataStreamServer which listens for incoming tcp connections and handles identification of new connections