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