예제 #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());
 }