panll
2022-03-02 ae83bd6d0645e667b2fc409cf6d2d3f8177298a2
src/main/java/com/genersoft/iot/vmp/gb28181/event/EventPublisher.java
@@ -101,14 +101,14 @@
      applicationEventPublisher.publishEvent(outEvent);
   }
   @Async
   public void catalogEventPublish(String platformId, DeviceChannel deviceChannel, String type) {
      List<DeviceChannel> deviceChannelList = new ArrayList<>();
      deviceChannelList.add(deviceChannel);
      catalogEventPublish(platformId, deviceChannelList, type);
   }
   @Async
   public void catalogEventPublish(String platformId, List<DeviceChannel> deviceChannels, String type) {
      CatalogEvent outEvent = new CatalogEvent(this);
      List<DeviceChannel> channels = new ArrayList<>();
@@ -130,7 +130,7 @@
      applicationEventPublisher.publishEvent(outEvent);
   }
   @Async
   public void catalogEventPublishForStream(String platformId, List<GbStream> gbStreams, String type) {
      CatalogEvent outEvent = new CatalogEvent(this);
      outEvent.setGbStreams(gbStreams);
@@ -139,7 +139,7 @@
      applicationEventPublisher.publishEvent(outEvent);
   }
   @Async
   public void catalogEventPublishForStream(String platformId, GbStream gbStream, String type) {
      List<GbStream> gbStreamList = new ArrayList<>();
      gbStreamList.add(gbStream);