Example #1
0
 public ProcessBlock(AbsTimeGenerator _timeGenerator, IOut _queue, IIn _nextBlock)
 {
     m_isRequestHere = false;
     m_timeGenerator = _timeGenerator;
     m_queue = _queue;
     m_nextBlock = _nextBlock;
 }
Example #2
0
 public Generator(AbsTimeGenerator _timeGenerator, IIn _nextBlock)
 {
     m_nextBlock = _nextBlock;
     m_timeGenerator = _timeGenerator;
     m_time = m_timeGenerator.Next();
 }