Example usage for com.google.common.eventbus EventBus interface-usage

List of usage examples for com.google.common.eventbus EventBus interface-usage

Introduction

In this page you can find the example usage for com.google.common.eventbus EventBus interface-usage.

Usage

From source file com.guestful.bus.GuavaEventBus.java

/**
 * date 2014-06-02
 *
 * @author Mathieu Carbou (mathieu.carbou@gmail.com)
 */
public class GuavaEventBus implements EventBus {

From source file com.ning.billing.util.eventbus.MemoryEventBus.java

public class MemoryEventBus implements EventBus {

    // STEPH config ?
    private final static int MAX_EVENT_THREADS = 1;

    private final static String EVENT_BUS_IDENTIFIER = "eventbus-service";

From source file org.sonatype.nexus.common.event.EventBusImpl.java

/**
 * {@link EventBus} implementation using Guava {@link com.google.common.eventbus.EventBus}.
 *
 * @since 3.0
 */
@Named

From source file pzalejko.iot.hardware.home.core.service.DefaultEventBus.java

@Component
public class DefaultEventBus implements EventBus {

    private static final Logger LOG = LoggerFactory.getLogger(DefaultEventBus.class);

    private com.google.common.eventbus.EventBus bus;