Ejemplo n.º 1
0
 /// <summary>
 /// Creates server stream.
 /// </summary>
 /// <param name="scope">Scope of stream.</param>
 /// <param name="name">Name of stream.</param>
 /// <returns></returns>
 public static IServerStream CreateServerStream(IScope scope, string name)
 {
     log.Debug("Creating server stream: " + name + " Scope: " + scope);
     ServerStream stream = new ServerStream();
     stream.Scope = scope;
     stream.Name = name;
     stream.PublishedName = name;
     return stream;
 }
Ejemplo n.º 2
0
        /// <summary>
        /// Creates server stream.
        /// </summary>
        /// <param name="scope">Scope of stream.</param>
        /// <param name="name">Name of stream.</param>
        /// <returns></returns>
        public static IServerStream CreateServerStream(IScope scope, string name)
        {
            log.Debug("Creating server stream: " + name + " Scope: " + scope);
            ServerStream stream = new ServerStream();

            stream.Scope         = scope;
            stream.Name          = name;
            stream.PublishedName = name;
            return(stream);
        }
Ejemplo n.º 3
0
 public VODScheduledJob(ServerStream serverStream)
 {
     _serverStream = serverStream;
 }
Ejemplo n.º 4
0
 public PlayItemScheduledJob(ServerStream serverStream)
 {
     _serverStream = serverStream;
 }
Ejemplo n.º 5
0
 public VODScheduledJob(ServerStream serverStream)
 {
     _serverStream = serverStream;
 }
Ejemplo n.º 6
0
 public PlayItemScheduledJob(ServerStream serverStream)
 {
     _serverStream = serverStream;
 }