ticks() public method

public ticks ( ) : long
return long
コード例 #1
0
ファイル: ActorPool.cs プロジェクト: nomit007/f4
 internal void schedule(Actor a, Duration d, Future f)
 {
     m_scheduler.schedule(d.ticks(), new ScheduledWork(a, f));
 }
コード例 #2
0
ファイル: ActorPool.cs プロジェクト: syatanic/fantom
 internal void schedule(Actor a, Duration d, Future f)
 {
     m_scheduler.schedule(d.ticks(), new ScheduledWork(a, f));
 }