Exemplo n.º 1
0
        public RTPNackManager(IRTPMessageSender sender, ClassroomModel classroom)
        {
            this.m_Sender = sender;

            this.m_Classroom = classroom;
            this.m_Classroom.Changed["Participants"].Add(new PropertyEventHandler(this.HandleClassroomParticipantsChanged));

            Thread thread = new Thread(new ThreadStart(this.FlusherThread));

            thread.Name         = "RTPNackManager.FlusherThread";
            thread.IsBackground = true;
            thread.Start();
        }
Exemplo n.º 2
0
        public RTPNackManager(IRTPMessageSender sender, ClassroomModel classroom)
        {
            this.m_Sender = sender;

            this.m_Classroom = classroom;
            this.m_Classroom.Changed["Participants"].Add(new PropertyEventHandler(this.HandleClassroomParticipantsChanged));

            Thread thread = new Thread(new ThreadStart(this.FlusherThread));
            thread.Name = "RTPNackManager.FlusherThread";
            thread.IsBackground = true;
            thread.Start();
        }