Examples of IMessageInput


Examples of org.red5.server.messaging.IMessageInput

   * @return <code>true</code> if scope has VOD stream with given name,
   *         <code>false</code> otherwise.
   */
  public boolean hasOnDemandStream(IScope scope, String name) {
    IProviderService service = (IProviderService) ScopeUtils.getScopeService(scope, IProviderService.class, ProviderService.class);
    IMessageInput msgIn = service.getVODProviderInput(scope, name);
    if (msgIn instanceof AbstractPipe) {
      ((AbstractPipe) msgIn).close();
    }
    return (msgIn != null);
  }
View Full Code Here

Examples of org.red5.server.messaging.IMessageInput

    return result;
  }

  /** {@inheritDoc} */
  public IMessageInput getProviderInput(IScope scope, String name) {
    IMessageInput msgIn = getLiveProviderInput(scope, name, false);
    if (msgIn == null) {
      return getVODProviderInput(scope, name);
    }
    return msgIn;
  }
View Full Code Here

Examples of org.red5.server.messaging.IMessageInput

      IScope thisScope = getScope();
      IContext context = thisScope.getContext();
      IProviderService providerService = (IProviderService) context
          .getBean(IProviderService.BEAN_NAME);
            // Get live input
            IMessageInput liveInput = providerService.getLiveProviderInput(
          thisScope, item.getName(), false);
            // Get VOD input
            IMessageInput vodInput = providerService.getVODProviderInput(
          thisScope, item.getName());

            boolean isPublishedStream = liveInput != null;
      boolean isFileStream = vodInput != null;
      boolean sendNotifications = true;
View Full Code Here

Examples of org.red5.server.messaging.IMessageInput

  private static final Logger log = LoggerFactory
      .getLogger(ProviderService.class);

  /** {@inheritDoc} */
  public IMessageInput getProviderInput(IScope scope, String name) {
    IMessageInput msgIn = getLiveProviderInput(scope, name, false);
    if (msgIn == null) {
      return getVODProviderInput(scope, name);
    }
    return msgIn;
  }
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.