Esempio n. 1
0
 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();
 }
Esempio n. 2
0
 public StorageWrapper(Streamer.StorageManager manager)
 {
     storageManager = manager;
 }