Ejemplo n.º 1
0
 public RFActiveComponent(RFComponentContext context)
 {
     _context     = context;
     _isExiting   = false;
     _sync        = new object();
     _componentID = RFComponentCounter.GetNextComponentID();
 }
Ejemplo n.º 2
0
 public RFPassiveComponent(RFComponentContext context)
 {
     _context     = context;
     _componentID = RFComponentCounter.GetNextComponentID();
 }
Ejemplo n.º 3
0
 protected RFGraphProcessor()
 {
     _processorID = RFComponentCounter.GetNextComponentID();
 }