예제 #1
0
파일: Program.cs 프로젝트: tidehc/MiniNVR
 public ResultResponder(Streamer.StorageManager manager, HttpListenerContext request)
 {
     storageManager = manager;
     context        = request;
     queue          = new BlockingCollection <Item>(new ConcurrentQueue <Item>());
     thread         = new Thread(WorkerThread);
     thread.Name    = "RecordResponder";
     thread.Start();
 }
예제 #2
0
파일: Program.cs 프로젝트: tidehc/MiniNVR
 public StorageWrapper(Streamer.StorageManager manager)
 {
     storageManager = manager;
 }