Package org.red5.server.api

Examples of org.red5.server.api.IScopeHandler.leave()


        clients.remove(client);
        clientStats.decrement();
        if (handler != null) {
          try {
            // there may be a timeout here ?
            handler.leave(client, this);
          } catch (Exception e) {
            log.error("Error while executing \"leave\" for client {} on handler {}. {}", new Object[]{conn, handler, e});
          }
        }
      }
View Full Code Here


        } catch (Exception e) {
          log.error("Error while executing \"disconnect\" for connection {} on handler {}. {}", new Object[] { conn, handler, e });
        }
        try {
          // there may be a timeout here ?
          handler.leave(client, this);
        } catch (Exception e) {
          log.error("Error while executing \"leave\" for client {} on handler {}. {}", new Object[] { conn, handler, e });
        }
      }
      // remove listener
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.