All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.common.eventbus.EventBus2 Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.google.common.eventbus;

import com.google.common.util.concurrent.MoreExecutors;

/**
 * @author yangzj
 * @date 2021/2/3
 */
public class EventBus2 extends EventBus{

  public EventBus2() {
    super("default",
        MoreExecutors.directExecutor(),
        new Dispatcher2(),
        EventBus.LoggingHandler.INSTANCE);

  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy