MCPcopy Index your code
hub / github.com/greenrobot/EventBus / Poster

Interface Poster

EventBus/src/org/greenrobot/eventbus/Poster.java:23–32  ·  view source on GitHub ↗

Posts events. @author William Ferguson

Source from the content-addressed store, hash-verified

21 * @author William Ferguson
22 */
23public interface Poster {
24
25 /**
26 * Enqueue an event to be posted for a particular subscription.
27 *
28 * @param subscription Subscription which will receive the event.
29 * @param event Event that will be posted to subscribers.
30 */
31 void enqueue(Subscription subscription, Object event);
32}

Callers 4

enqueueMethod · 0.65
enqueueMethod · 0.65
postToSubscriptionMethod · 0.65
enqueueMethod · 0.65

Implementers 4

HandlerPostereventbus-android/src/main/java/org/gre
BackgroundPosterEventBus/src/org/greenrobot/eventbus/B
AsyncPosterEventBus/src/org/greenrobot/eventbus/A
PendingPostQueueEventBus/src/org/greenrobot/eventbus/P

Calls

no outgoing calls

Tested by

no test coverage detected