示例#1
0
文件: ModelT.cs 项目: 0rps/model_git
 public ProcessBlock(AbsTimeGenerator _timeGenerator, IOut _queue, IIn _nextBlock)
 {
     m_isRequestHere = false;
     m_timeGenerator = _timeGenerator;
     m_queue = _queue;
     m_nextBlock = _nextBlock;
 }
示例#2
0
文件: Model.cs 项目: 0rps/model_git
 public Generator(AbsTimeGenerator _timeGenerator, IIn _nextBlock)
 {
     m_nextBlock = _nextBlock;
     m_timeGenerator = _timeGenerator;
     m_time = m_timeGenerator.Next();
 }