Uses of Interface
org.bushe.swing.event.EventTopicSubscriber

Packages that use EventTopicSubscriber
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. 
 

Uses of EventTopicSubscriber in org.bushe.swing.event
 

Subinterfaces of EventTopicSubscriber in org.bushe.swing.event
 interface PrioritizedEventTopicSubscriber
          This is a convenience interface, particularly for inner classes, that implements EventTopicSubscriber and Prioritized.
 

Methods in org.bushe.swing.event with parameters of type EventTopicSubscriber
protected  void ThreadSafeEventService.onEventException(String topic, Object eventObj, Throwable e, StackTraceElement[] callingStack, EventTopicSubscriber eventTopicSubscriber)
          Called during event handling exceptions, calls handleException
 boolean ThreadSafeEventService.subscribe(Pattern pat, EventTopicSubscriber eh)
           
static boolean EventBus.subscribe(Pattern topicPattern, EventTopicSubscriber subscriber)
           
 boolean EventService.subscribe(Pattern topicPattern, EventTopicSubscriber subscriber)
          Subscribes an EventSubscriber to the publication of all the topic names that match a RegEx Pattern.
 boolean ThreadSafeEventService.subscribe(String topic, EventTopicSubscriber eh)
           
static boolean EventBus.subscribe(String topic, EventTopicSubscriber subscriber)
           
 boolean EventService.subscribe(String topic, EventTopicSubscriber subscriber)
          Subscribes an EventTopicSubscriber to the publication of a topic name.
 boolean ThreadSafeEventService.subscribeStrongly(Pattern pat, EventTopicSubscriber eh)
           
static boolean EventBus.subscribeStrongly(Pattern topicPattern, EventTopicSubscriber subscriber)
           
 boolean EventService.subscribeStrongly(Pattern topicPattern, EventTopicSubscriber subscriber)
          Subscribes a subscriber to all the event topic names that match a RegEx expression.
 boolean ThreadSafeEventService.subscribeStrongly(String name, EventTopicSubscriber eh)
           
static boolean EventBus.subscribeStrongly(String topic, EventTopicSubscriber subscriber)
           
 boolean EventService.subscribeStrongly(String topic, EventTopicSubscriber subscriber)
          Subscribes a subscriber to an event topic name.
 boolean ThreadSafeEventService.unsubscribe(Pattern topicPattern, EventTopicSubscriber eh)
           
static boolean EventBus.unsubscribe(Pattern topicPattern, EventTopicSubscriber subscriber)
           
 boolean EventService.unsubscribe(Pattern topicPattern, EventTopicSubscriber subscriber)
          Stop the subscription for a subscriber that is subscribed to event topics via a Pattern.
 boolean ThreadSafeEventService.unsubscribe(String name, EventTopicSubscriber eh)
           
static boolean EventBus.unsubscribe(String topic, EventTopicSubscriber subscriber)
           
 boolean EventService.unsubscribe(String topic, EventTopicSubscriber subscriber)
          Stop the subscription for a subscriber that is subscribed to an event topic.
 

Constructors in org.bushe.swing.event with parameters of type EventTopicSubscriber
ContainerEventServiceRegistrar(JComponent jComp, EventSubscriber eventSubscriber, Class[] eventClasses, EventTopicSubscriber eventTopicSubscriber, String[] topics)
          Create a registrar that will keep track of the container event service, and subscribe the subscriber to the topics and the event classes when the ContainerEventService is available and when it changes.
ContainerEventServiceRegistrar(JComponent jComp, EventTopicSubscriber eventTopicSubscriber, String topic)
          Create a registrar that will keep track of the container event service, and subscribe the subscriber to the topic when the ContainerEventService is available and when it changes.
ContainerEventServiceRegistrar(JComponent jComp, EventTopicSubscriber eventTopicSubscriber, String[] topics)
          Create a registrar that will keep track of the container event service, and subscribeStrongly the subscriber to the topics when the ContainerEventService is available and when it changes.
 

Uses of EventTopicSubscriber in org.bushe.swing.event.annotation
 

Classes in org.bushe.swing.event.annotation that implement EventTopicSubscriber
 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 © 2011 Bushe Enterprises, Inc.. All Rights Reserved.