EventProperty.java 492 B

1234567891011121314151617181920212223
  1. package jnpf.properties;
  2. import jnpf.consts.ProjectEventConst;
  3. import lombok.Data;
  4. /**
  5. * 事件模块配置
  6. */
  7. @Data
  8. public class EventProperty {
  9. public static final String PREFIX = "event";
  10. /**
  11. * 默认时间发布、监听渠道: redis, mq
  12. */
  13. public String eventPublishType = ProjectEventConst.EVENT_PUBLISH_TYPE_REDIS;
  14. /**
  15. * Redis监听模式:current, all
  16. */
  17. public String redisPublishType = ProjectEventConst.REDIS_PUBLISH_TYPE_CURRENT;
  18. }