old mode 100644
new mode 100755
|  |  |  | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private IPlayService playService; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Async | 
|---|
|  |  |  | @Async("taskExecutor") | 
|---|
|  |  |  | @EventListener | 
|---|
|  |  |  | public void onApplicationEvent(ZLMOnlineEvent event) { | 
|---|
|  |  |  | logger.info("[ZLM] 上线 ID:" + event.getMediaServerId()); | 
|---|
|  |  |  | streamPushService.zlmServerOnline(event.getMediaServerId()); | 
|---|
|  |  |  | streamProxyService.zlmServerOnline(event.getMediaServerId()); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | playService.zlmServerOnline(event.getMediaServerId()); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Async | 
|---|
|  |  |  | @Async("taskExecutor") | 
|---|
|  |  |  | @EventListener | 
|---|
|  |  |  | public void onApplicationEvent(ZLMOfflineEvent event) { | 
|---|
|  |  |  |  | 
|---|