コード例 #1
0
ファイル: Timeout.cs プロジェクト: Bhanditz/manos
 /// <summary>
 /// Inidicates that the IOLoop should retain this timeout, because it will be run again at some point in the future. Infrastructure.
 /// </summary>
 public bool ShouldContinueToRepeat()
 {
     return(repeat.ShouldContinueToRepeat());
 }
コード例 #2
0
ファイル: Timeout.cs プロジェクト: txdv/manos
 /// <summary>
 /// Inidicates that the IOLoop should retain this timeout, because it will be run again at some point in the future. Infrastructure.
 /// </summary>
 public bool ShouldContinueToRepeat()
 {
     return(!stopped && repeat.ShouldContinueToRepeat());
 }