[+] 重启终端、创建会议、进入会议
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.acgist.taoyao.live;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
import com.acgist.taoyao.signal.event.ApplicationEventAdapter;
|
||||
import com.acgist.taoyao.signal.listener.ApplicationListenerAdapter;
|
||||
|
||||
/**
|
||||
* 直播事件监听适配器
|
||||
*
|
||||
* @param <E> 事件泛型
|
||||
*
|
||||
* @author acgist
|
||||
*/
|
||||
public abstract class LiveListenerAdapter<E extends ApplicationEventAdapter> extends ApplicationListenerAdapter<E> {
|
||||
|
||||
@Autowired
|
||||
protected LiveManager liveManager;
|
||||
|
||||
}
|
||||
@@ -1,5 +1,13 @@
|
||||
package com.acgist.taoyao.live;
|
||||
|
||||
import com.acgist.taoyao.boot.annotation.Manager;
|
||||
|
||||
/**
|
||||
* 直播管理
|
||||
*
|
||||
* @author acgist
|
||||
*/
|
||||
@Manager
|
||||
public class LiveManager {
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user