EventImpl

EventImpl

Constructors

this
this()
Undocumented in source.

Members

Functions

Idelegate
void Idelegate()
Undocumented in source. Be warned that the author may not have intended to support it.
attachments
Record attachments()
Undocumented in source. Be warned that the author may not have intended to support it.
clear
void clear()
Undocumented in source. Be warned that the author may not have intended to support it.
copy
Event copy()
Undocumented in source. Be warned that the author may not have intended to support it.
delegat
void delegat()
Undocumented in source. Be warned that the author may not have intended to support it.
dispatch
void dispatch(Handler handler)
Undocumented in source. Be warned that the author may not have intended to support it.
getConnection
Connection getConnection()
Undocumented in source. Be warned that the author may not have intended to support it.
getContext
Object getContext()
Undocumented in source. Be warned that the author may not have intended to support it.
getDelivery
Delivery getDelivery()
Undocumented in source. Be warned that the author may not have intended to support it.
getEventType
EventType getEventType()
Undocumented in source. Be warned that the author may not have intended to support it.
getLink
Link getLink()
Undocumented in source. Be warned that the author may not have intended to support it.
getReactor
Reactor getReactor()
Undocumented in source. Be warned that the author may not have intended to support it.
getReceiver
Receiver getReceiver()
Undocumented in source. Be warned that the author may not have intended to support it.
getRootHandler
Handler getRootHandler()
Undocumented in source. Be warned that the author may not have intended to support it.
getSelectable
Selectable getSelectable()
Undocumented in source. Be warned that the author may not have intended to support it.
getSender
Sender getSender()
Undocumented in source. Be warned that the author may not have intended to support it.
getSession
Session getSession()
Undocumented in source. Be warned that the author may not have intended to support it.
getTask
Task getTask()
Undocumented in source. Be warned that the author may not have intended to support it.
getTransport
Transport getTransport()
Undocumented in source. Be warned that the author may not have intended to support it.
getType
Type getType()
Undocumented in source. Be warned that the author may not have intended to support it.
init
void init(EventType type, Object context)
Undocumented in source. Be warned that the author may not have intended to support it.
redispatch
void redispatch(EventType as_type, Handler handler)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

_attachments
RecordImpl _attachments;
Undocumented in source.
context
Object context;
Undocumented in source.
next
EventImpl next;
Undocumented in source.
type
EventType type;
Undocumented in source.

Inherited Members

From Event

getEventType
EventType getEventType()

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

getType
Type getType()

A concrete event type of core events.

getContext
Object getContext()
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

dispatch
void dispatch(Handler handler)
Undocumented in source.
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()}.

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)}

getConnection
Connection getConnection()
Undocumented in source.
getSession
Session getSession()
Undocumented in source.
getLink
Link getLink()
Undocumented in source.
getSender
Sender getSender()
Undocumented in source.
getReceiver
Receiver getReceiver()
Undocumented in source.
getDelivery
Delivery getDelivery()
Undocumented in source.
getTransport
Transport getTransport()
Undocumented in source.
getReactor
Reactor getReactor()
Undocumented in source.
getSelectable
Selectable getSelectable()
Undocumented in source.
getTask
Task getTask()
Undocumented in source.
copy
Event copy()
Undocumented in source.

Meta