HomeSort by relevance Sort by last modified time
    Searched defs:eventbus (Results 1 - 17 of 17) sorted by null

  /external/guava/guava/src/com/google/common/eventbus/
package-info.java 18 * The EventBus allows publish-subscribe-style communication between components
27 * Converting an existing EventListener-based system to use the EventBus is
35 * <li><strong>...with EventBus:</strong> create a method that accepts
37 * {@link com.google.common.eventbus.Subscribe} annotation.</li>
46 * <li><strong>...with EventBus:</strong> pass your object to the
47 * {@link com.google.common.eventbus.EventBus#register(Object)} method on an
48 * EventBus. You'll need to
49 * make sure that your object shares an EventBus instance with the event
56 * <li><strong>...with EventBus:</strong> events are automatically dispatched t
    [all...]
AllowConcurrentEvents.java 17 package com.google.common.eventbus;
27 * indicates that EventBus may invoke the event handler simultaneously from
Subscribe.java 17 package com.google.common.eventbus;
27 * {@link AnnotatedHandlerFinder} and {@link EventBus}.
32 * to register for event delivery from the {@link EventBus}.
HandlerFindingStrategy.java 17 package com.google.common.eventbus;
23 * {@link EventBus}.
SynchronizedEventHandler.java 17 package com.google.common.eventbus;
DeadEvent.java 17 package com.google.common.eventbus;
41 * {@link EventBus}).
51 * originated the wrapped event). This is generally an {@link EventBus}.
AsyncEventBus.java 17 package com.google.common.eventbus;
24 * An {@link EventBus} that takes the Executor of your choice and uses it to
31 public class AsyncEventBus extends EventBus {
AnnotatedHandlerFinder.java 17 package com.google.common.eventbus;
EventHandler.java 17 package com.google.common.eventbus;
EventBus.java 17 package com.google.common.eventbus;
48 * <p>The EventBus allows publish-subscribe-style communication between
60 * <li>Pass itself to an EventBus instance's {@link #register(Object)} method.
66 * {@link #post(Object)} method. The EventBus instance will determine the type
82 * <p>Handlers should not, in general, throw. If they do, the EventBus will
87 * <p>The EventBus guarantees that it will not call a handler method from
91 * also called from outside the EventBus.
109 public class EventBus {
186 * Creates a new EventBus named "default".
188 public EventBus() {
    [all...]
  /external/guava/guava-tests/test/com/google/common/eventbus/
StringCatcher.java 17 package com.google.common.eventbus;
26 * For testing fun, also includes a landmine method that EventBus tests are
AsyncEventBusTest.java 17 package com.google.common.eventbus;
ReentrantEventsTest.java 17 package com.google.common.eventbus;
24 * Validate that {@link EventBus} behaves carefully when listeners publish
34 final EventBus bus = new EventBus();
EventHandlerTest.java 17 package com.google.common.eventbus;
EventBusTest.java 17 package com.google.common.eventbus;
26 * Test case for {@link EventBus}.
34 private EventBus bus;
38 bus = new EventBus(BUS_IDENTIFIER);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.core_2.0.2.R36x_v20100804.jar 
  /prebuilts/tools/common/guava-tools/
guava-10.0.1.jar 

Completed in 1158 milliseconds