|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.atlassian.event.internal.EventPublisherImpl
public final class EventPublisherImpl
The default implementation of the EventPublisher interface.
One can customise the event listening by instantiating with custom
listener handlers and the event dispatching through
EventDispatcher. See the com.atlassian.event.spi package
for more information.
ListenerHandler,
EventDispatcher| Constructor Summary | |
|---|---|
EventPublisherImpl(EventDispatcher eventDispatcher,
ListenerHandlersConfiguration listenerHandlersConfiguration)
If you need to customise the asynchronous handling, you should use the AsynchronousAbleEventDispatcher together with a custom executor. |
|
| Method Summary | |
|---|---|
void |
publish(java.lang.Object event)
Publish an event that will be consumed by all listeners which have registered to receive it. |
void |
publishEvent(Event event)
Publish an event that will be consumed by all listeners which have registered to receive it. |
void |
register(java.lang.Object listener)
Register a listener to receive events. |
void |
registerListener(java.lang.String listenerKey,
EventListener listener)
Register a listener to receive events. |
void |
unRegister(java.lang.Object listener)
Un-register a listener so that it will no longer receive events. |
void |
unregisterListener(java.lang.String listenerKey)
Un-register a listener so that it will no longer receive events. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public EventPublisherImpl(EventDispatcher eventDispatcher,
ListenerHandlersConfiguration listenerHandlersConfiguration)
If you need to customise the asynchronous handling, you should use the
AsynchronousAbleEventDispatcher together with a custom executor. You might
also want to have a look at using the EventThreadFactory to keep the naming
of event threads consistent with the default naming of the Atlassian Event library.
eventDispatcher - the event dispatcher to be used with the publisherlistenerHandlersConfiguration - the list of listener handlers to be used with this publisherAsynchronousAbleEventDispatcher,
EventThreadFactory| Method Detail |
|---|
public void publish(java.lang.Object event)
EventPublisher
publish in interface EventPublisherevent - the event to publishpublic void register(java.lang.Object listener)
EventPublisher
register in interface EventPublisherlistener - The listener that is being registeredpublic void unRegister(java.lang.Object listener)
EventPublisher
unRegister in interface EventPublisherlistener - The listener to un-registerpublic void publishEvent(Event event)
EventManager
publishEvent in interface EventManagerevent - the event to publish
public void registerListener(java.lang.String listenerKey,
EventListener listener)
EventManager
registerListener in interface EventManagerlistenerKey - A unique key for this listener. If the listener is a plugin module, use the
module's complete keylistener - The listener that is being registeredpublic void unregisterListener(java.lang.String listenerKey)
EventManager
unregisterListener in interface EventManagerlistenerKey - the key under which the listener was registered.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||