コード例 #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();
 }