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();
 }
 protected RFGraphProcessor()
 {
     _processorID = RFComponentCounter.GetNextComponentID();
 }