Package | Description |
---|---|
org.bushe.swing.event |
The main package, provides publish/subscribe services for Swing and non-Swing applications.
|
org.bushe.swing.event.annotation |
EventBus annotations to make it much simpler to publish and subscribe to events.
|
Modifier and Type | Method and Description |
---|---|
protected void |
ThreadSafeEventService.handleVeto(VetoEventListener vl,
Object event,
VetoTopicEventListener vtl,
String topic,
Object eventObj)
Handle vetos of an event or topic, by default logs finely.
|
boolean |
EventService.subscribeVetoListener(Pattern topicPattern,
VetoTopicEventListener vetoListener)
Subscribes an VetoTopicEventListener to all the topic names that match the RegEx Pattern.
|
boolean |
ThreadSafeEventService.subscribeVetoListener(Pattern topicPattern,
VetoTopicEventListener vetoListener) |
static boolean |
EventBus.subscribeVetoListener(Pattern topicPattern,
VetoTopicEventListener vetoListener) |
boolean |
EventService.subscribeVetoListener(String topic,
VetoTopicEventListener vetoListener)
Subscribes a VetoTopicEventListener to a topic name.
|
boolean |
ThreadSafeEventService.subscribeVetoListener(String topic,
VetoTopicEventListener vetoListener) |
static boolean |
EventBus.subscribeVetoListener(String topic,
VetoTopicEventListener vetoListener) |
boolean |
EventService.subscribeVetoListenerStrongly(Pattern topicPattern,
VetoTopicEventListener vetoListener)
Subscribes a VetoTopicEventListener to a set of topics that match a RegEx expression.
|
boolean |
ThreadSafeEventService.subscribeVetoListenerStrongly(Pattern topicPattern,
VetoTopicEventListener vetoListener) |
static boolean |
EventBus.subscribeVetoListenerStrongly(Pattern topicPattern,
VetoTopicEventListener vetoListener) |
boolean |
EventService.subscribeVetoListenerStrongly(String topic,
VetoTopicEventListener vetoListener)
Subscribes a VetoEventListener to a topic name.
|
boolean |
ThreadSafeEventService.subscribeVetoListenerStrongly(String topic,
VetoTopicEventListener vetoListener) |
static boolean |
EventBus.subscribeVetoListenerStrongly(String topic,
VetoTopicEventListener vetoListener) |
boolean |
EventService.unsubscribeVetoListener(Pattern topicPattern,
VetoTopicEventListener vetoListener)
Stop the subscription for a VetoTopicEventListener that is subscribed to an event topic RegEx pattern.
|
boolean |
ThreadSafeEventService.unsubscribeVetoListener(Pattern topicPattern,
VetoTopicEventListener vetoListener) |
static boolean |
EventBus.unsubscribeVetoListener(Pattern topicPattern,
VetoTopicEventListener vetoListener) |
boolean |
EventService.unsubscribeVetoListener(String topic,
VetoTopicEventListener vetoListener)
Stop the subscription for a VetoTopicEventListener that is subscribed to an event topic name.
|
boolean |
ThreadSafeEventService.unsubscribeVetoListener(String topic,
VetoTopicEventListener vetoListener) |
static boolean |
EventBus.unsubscribeVetoListener(String topic,
VetoTopicEventListener vetoListener) |
Modifier and Type | Class and Description |
---|---|
class |
ProxyTopicPatternSubscriber
A Proxy Subscriber for Annotations that use topic patterns
|
class |
ProxyTopicSubscriber
A class that subscribes to an EventService on behalf of another object.
|
Copyright © 2013 Bushe Enterprises, Inc.. All Rights Reserved.