Ejemplo n.º 1
0
 public ManagerBundle(StreamGraph graph, string[] sessionPaths, Size camFrameSize)
 {
     this.graph        = graph;
     this.sessionPaths = sessionPaths;
     this.camFrameSize = camFrameSize;
     MessageQueueSetup();
     Setup();
 }
Ejemplo n.º 2
0
 public ThreadManager(StreamArchitecture architecture, string[] sessionPaths, IList <IManagedCamera> managedCameras, Util.OryxSetupInfo[] oryxSetups)
 {
     this.architecture   = architecture;
     this.sessionPaths   = sessionPaths;
     this.managedCameras = managedCameras;
     this.oryxSetups     = oryxSetups;
     streamGraph         = new StreamGraph(this.architecture);
     managerBundle       = new ManagerBundle(graph: streamGraph, sessionPaths: this.sessionPaths, camFrameSize: oryxSetups[0].frameSize);
     SetupThreads();
 }
Ejemplo n.º 3
0
 public override JobExecutionResult Execute(StreamGraph streamGraph)
 {
     throw new System.NotImplementedException();
 }