Java com.google.common.eventbus EventBus fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.eventbus EventBus fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.eventbus EventBus.

The text is from its open source code.

Subclass

com.google.common.eventbus.EventBus has subclasses.
Click this link to see all its subclasses.

Implementation

com.google.common.eventbus.EventBus has the following implementations.
Click this link to see all its implementation.

Constructor

EventBus()
Creates a new EventBus named "default".
EventBus(String identifier)
Creates a new EventBus with the given identifier .
EventBus(SubscriberExceptionHandler exceptionHandler)
Creates a new EventBus with the given SubscriberExceptionHandler .

Method

booleanequals(Object obj)
Indicates whether some other object is "equal to" this one.
voidpost(Object event)
Posts an event to all registered subscribers.
voidregister(Object object)
Registers all subscriber methods on object to receive events.
voidunregister(Object object)
Unregisters all subscriber methods on a registered object .