Event

Undocumented in source.

Members

Functions

Idelegate
void Idelegate()

dispatch the event to all children of the handler. A handler can call this method explicitly to be able to do more processing after all child handlers have already processed the event. If handler does not invoke this method it is invoked implicitly by {@link #dispatch(Handler)}

copy
Event copy()
Undocumented in source.
dispatch
void dispatch(Handler handler)
Undocumented in source.
getConnection
Connection getConnection()
Undocumented in source.
getContext
Object getContext()
Undocumented in source.
getDelivery
Delivery getDelivery()
Undocumented in source.
getEventType
EventType getEventType()

@return type of the event. The event type can be defined outside of the proton library.

getLink
Link getLink()
Undocumented in source.
getReactor
Reactor getReactor()
Undocumented in source.
getReceiver
Receiver getReceiver()
Undocumented in source.
getRootHandler
Handler getRootHandler()

The {@link Handler} at the root of the handler tree. <p> Set by the {@link Reactor} before dispatching the event. <p> @see #redispatch(EventType, Handler) @return The root handler

getSelectable
Selectable getSelectable()
Undocumented in source.
getSender
Sender getSender()
Undocumented in source.
getSession
Session getSession()
Undocumented in source.
getTask
Task getTask()
Undocumented in source.
getTransport
Transport getTransport()
Undocumented in source.
getType
Type getType()

A concrete event type of core events.

redispatch
void redispatch(EventType as_type, Handler handler)

Synchronously redispatch the current event as a new {@link EventType} on the provided handler and it's children. <p> Note: the <code>redispatch()</code> will complete before children of the current handler have had the current event dispatched, see {@link #delegate()}.

Inherited Members

From Extendable

attachments
Record attachments()
Undocumented in source.

Meta