Ejemplo n.º 1
0
 /** Notifies handler on stream recording stop */
 private void notifyRecordingStop() {
   IStreamAwareScopeHandler handler = getStreamAwareHandler();
   if (handler != null) {
     try {
       handler.streamRecordStop(this);
     } catch (Throwable t) {
       log.error("Error in notifyBroadcastClose", t);
     }
   }
 }