Ejemplo n.º 1
0
 /** Notifies handler on stream broadcast stop */
 protected void notifyBroadcastClose() {
   IStreamAwareScopeHandler handler = getStreamAwareHandler();
   if (handler != null) {
     try {
       handler.streamBroadcastClose(this);
     } catch (Throwable t) {
       log.error("error notify streamBroadcastStop", t);
     }
   }
 }