C D E G N O P R S T U V 

C

causingEvent - Variable in class de.greenrobot.event.SubscriberExceptionEvent
The original event that could not be delivered to any subscriber.
causingSubscriber - Variable in class de.greenrobot.event.SubscriberExceptionEvent
The subscriber that threw the Throwable.
clearCaches() - Static method in class de.greenrobot.event.EventBus
For unit test primarily.
clearSkipMethodNameVerifications() - Static method in class de.greenrobot.event.EventBus
For unit test primarily.
configureLogSubscriberExceptions(boolean) - Method in class de.greenrobot.event.EventBus
Before registering any subscribers, use this method to configure if EventBus should log exceptions thrown by subscribers (default: true).

D

de.greenrobot.event - package de.greenrobot.event
 

E

EventBus - Class in de.greenrobot.event
EventBus is a central publish/subscribe event system for Android.
EventBus() - Constructor for class de.greenrobot.event.EventBus
Creates a new EventBus instance; each instance is a separate scope in which events are delivered.
eventBus - Variable in class de.greenrobot.event.NoSubscriberEvent
The EventBus instance to with the original event was posted to.
eventBus - Variable in class de.greenrobot.event.SubscriberExceptionEvent
The EventBus instance to with the original event was posted to.
EventBusException - Exception in de.greenrobot.event
An RuntimeException thrown in cases something went wrong inside EventBus.
EventBusException(String) - Constructor for exception de.greenrobot.event.EventBusException
 
EventBusException(Throwable) - Constructor for exception de.greenrobot.event.EventBusException
 
EventBusException(String, Throwable) - Constructor for exception de.greenrobot.event.EventBusException
 

G

getDefault() - Static method in class de.greenrobot.event.EventBus
Convenience singleton for apps using a process-wide EventBus instance.
getStickyEvent(Class<?>) - Method in class de.greenrobot.event.EventBus
Gets the most recent sticky event for the given type.

N

NoSubscriberEvent - Class in de.greenrobot.event
This Event is posted by EventBus when no subscriber is found for a posted event.
NoSubscriberEvent(EventBus, Object) - Constructor for class de.greenrobot.event.NoSubscriberEvent
 

O

originalEvent - Variable in class de.greenrobot.event.NoSubscriberEvent
The original event that could not be delivered to any subscriber.

P

post(Object) - Method in class de.greenrobot.event.EventBus
Posts the given event to the event bus.
postSticky(Object) - Method in class de.greenrobot.event.EventBus
Posts the given event to the event bus and holds on to the event (because it is sticky).

R

register(Object) - Method in class de.greenrobot.event.EventBus
Registers the given subscriber to receive events.
register(Object, String) - Method in class de.greenrobot.event.EventBus
Like EventBus.register(Object), but allows to define a custom method name for event handler methods.
register(Object, Class<?>, Class<?>...) - Method in class de.greenrobot.event.EventBus
Like EventBus.register(Object), but only registers the subscriber for the given event types.
register(Object, String, Class<?>, Class<?>...) - Method in class de.greenrobot.event.EventBus
Like EventBus.register(Object, String), but only registers the subscriber for the given event types.
registerSticky(Object) - Method in class de.greenrobot.event.EventBus
Like EventBus.register(Object), but also triggers delivery of the most recent sticky event (posted with EventBus.postSticky(Object)) to the given subscriber.
registerSticky(Object, String) - Method in class de.greenrobot.event.EventBus
Like EventBus.registerSticky(Object), but allows to define a custom method name for event handler methods.
registerSticky(Object, Class<?>, Class<?>...) - Method in class de.greenrobot.event.EventBus
Like EventBus.registerSticky(Object), but only registers the subscriber for the given event types.
registerSticky(Object, String, Class<?>, Class<?>...) - Method in class de.greenrobot.event.EventBus
Like EventBus.registerSticky(Object, String), but only registers the subscriber for the given event types.
removeStickyEvent(Class<?>) - Method in class de.greenrobot.event.EventBus
Remove and gets the recent sticky event for the given type.
removeStickyEvent(Object) - Method in class de.greenrobot.event.EventBus
Removes the sticky event if it equals to the given event.

S

skipMethodNameVerificationFor(Class<?>) - Static method in class de.greenrobot.event.EventBus
Method name verification is done for methods starting with onEvent to avoid typos; using this method you can exclude subscriber classes from this check.
SubscriberExceptionEvent - Class in de.greenrobot.event
This Event is posted by EventBus when an exception occurs inside a subscriber's event handling method.
SubscriberExceptionEvent(EventBus, Throwable, Object, Object) - Constructor for class de.greenrobot.event.SubscriberExceptionEvent
 

T

TAG - Static variable in class de.greenrobot.event.EventBus
Log tag, apps may override it.
ThreadMode - Enum in de.greenrobot.event
Each event handler method has a thread mode, which determines in which thread the method is to be called by EventBus.
throwable - Variable in class de.greenrobot.event.SubscriberExceptionEvent
The Throwable thrown by a subscriber.

U

unregister(Object, Class<?>...) - Method in class de.greenrobot.event.EventBus
Unregisters the given subscriber for the given event classes.
unregister(Object) - Method in class de.greenrobot.event.EventBus
Unregisters the given subscriber from all event classes.

V

valueOf(String) - Static method in enum de.greenrobot.event.ThreadMode
Returns the enum constant of this type with the specified name.
values() - Static method in enum de.greenrobot.event.ThreadMode
Returns an array containing the constants of this enum type, in the order they are declared.
C D E G N O P R S T U V 

Available under the Apache License, Version 2.0 - Copyright © 2012-2013 greenrobot.de. All Rights Reserved.