package com.ard.gb28181.transmit.event;
|
|
import com.ard.gb28181.config.UserSetting;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.context.ApplicationEventPublisher;
|
import org.springframework.stereotype.Component;
|
|
/**
|
* @description:Event事件通知推送器,支持推送在线事件、离线事件
|
* @author: swwheihei
|
* @date: 2020年5月6日 上午11:30:50
|
*/
|
@Slf4j
|
@Component
|
public class EventPublisher {
|
|
@Autowired
|
private ApplicationEventPublisher applicationEventPublisher;
|
|
@Autowired
|
private UserSetting userSetting;
|
}
|