Examples of ISubscriberStreamService


Examples of org.red5.server.api.service.ISubscriberStreamService

   *
   * @return ISubscriberStream object
   */
  public ISubscriberStream getSubscriberStream(IScope scope, String name) {
    log.warn("This won't work until the refactoring of the streaming code is complete.");
    ISubscriberStreamService service = (ISubscriberStreamService) ScopeUtils.getScopeService(scope, ISubscriberStreamService.class, StreamService.class, false);
    return service.getSubscriberStream(scope, name);
  }
View Full Code Here

Examples of org.red5.server.api.stream.ISubscriberStreamService

   *
   * @return  ISubscriberStream object
   */
  public ISubscriberStream getSubscriberStream(IScope scope, String name) {
    log.warn("This won't work until the refactoring of the streaming code is complete.");
    ISubscriberStreamService service = (ISubscriberStreamService) getScopeService(
        scope, ISubscriberStreamService.class, StreamService.class,
        false);
    return service.getSubscriberStream(scope, name);
  }
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.