Modifier and Type | Method and Description |
---|---|
void |
RemoteEventConnector.sendEvent(Domain aDomain,
Event anEvent,
AsyncCallback<Void> aCallback)
Sends an event to a domain.
|
Modifier and Type | Method and Description |
---|---|
Event |
DomainEvent.getEvent()
Returns the event.
|
Event |
DefaultDomainEvent.getEvent()
Returns the event.
|
Constructor and Description |
---|
DefaultDomainEvent(Event aEvent)
Creates a new DomainEvent without a domain.
|
DefaultDomainEvent(Event aEvent,
Domain aDomain)
Creates a new DomainEvent with an event and a domain.
|
Modifier and Type | Method and Description |
---|---|
boolean |
EventFilter.match(Event anEvent)
If the match method returns true for an event, the event should be ignored, because the EventFilter recognizes
the event to filter it.
|
boolean |
DefaultEventFilter.match(Event anEvent)
When no
EventFilter is attached to the DefaultEventFilter,
no events will be filtered, because that method implementation returns false. |
boolean |
DefaultCompositeEventFilter.match(Event anEvent)
If the match method returns true for an event, the event should be ignored, because the EventFilter recognizes
the event to filter it.
|
Modifier and Type | Method and Description |
---|---|
void |
RemoteEventListener.apply(Event anEvent)
The apply method should recognize the incoming events and dispatch to a similar method of the extending interface.
|
Modifier and Type | Interface and Description |
---|---|
interface |
UnlistenEvent
An UnlistenEvent will be triggered when a timeout or a domain specific unlisten/deregistration occurs.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultUnlistenEvent
An UnlistenEvent will be triggered when a timeout or a domain specific unlisten/deregistration occurs.
|
Modifier and Type | Method and Description |
---|---|
void |
UnlistenEventListenerAdapter.apply(Event anEvent)
The apply method checks if the occurred event is an
UnlistenEvent
and dispatches the event to UnlistenEventListener.onUnlisten(UnlistenEvent) . |
Modifier and Type | Method and Description |
---|---|
void |
EventService.addEvent(Domain aDomain,
Event anEvent)
Adds an event for all users in the domain.
|
void |
EventServiceAsync.addEvent(Domain aDomain,
Event anEvent,
AsyncCallback<Void> async)
Adds an event for all users in the domain.
|
void |
EventService.addEventUserSpecific(Event anEvent)
Adds an event only for the current user.
|
void |
EventServiceAsync.addEventUserSpecific(Event anEvent,
AsyncCallback<Void> async)
Adds an event only for the current user.
|
Copyright © 2012. All Rights Reserved.