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

com.github.zhengframework.eventbus.EventBusConfig Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package com.github.zhengframework.eventbus;

import com.github.zhengframework.configuration.ConfigurationDefine;
import com.github.zhengframework.configuration.annotation.ConfigurationInfo;
import com.google.common.eventbus.EventBus;
import lombok.Data;
import lombok.NoArgsConstructor;

@SuppressWarnings("UnstableApiUsage")
@ConfigurationInfo(prefix = "zheng.eventbus")
@NoArgsConstructor
@Data
public class EventBusConfig implements ConfigurationDefine {

  private boolean enable = true;
  private EventBusType type = EventBusType.SYNC;
  private String targetPackageName = null;
  private Class eventBusClass;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy