Esempio n. 1
0
 public PITTimer(dOnTrigger HandleOnTrigger, int NanosecondsTimeout, int NanosecondsLeft)
 {
     this.HandleTrigger      = HandleOnTrigger;
     this.NanosecondsTimeout = NanosecondsTimeout;
     this.NSRemaining        = NanosecondsLeft;
     this.Recuring           = true;
 }
Esempio n. 2
0
 public PITTimer(dOnTrigger HandleOnTrigger, int NanosecondsTimeout, bool Recuring)
 {
     this.HandleTrigger      = HandleOnTrigger;
     this.NanosecondsTimeout = NanosecondsTimeout;
     this.NSRemaining        = this.NanosecondsTimeout;
     this.Recuring           = Recuring;
 }
Esempio n. 3
0
File: PIT.cs Progetto: Orvid/Cosmos
 public PITTimer(dOnTrigger HandleOnTrigger, int NanosecondsTimeout, int NanosecondsLeft) {
     this.HandleTrigger = HandleOnTrigger;
     this.NanosecondsTimeout = NanosecondsTimeout;
     this.NSRemaining = NanosecondsLeft;
     this.Recuring = true;
 }
Esempio n. 4
0
File: PIT.cs Progetto: Orvid/Cosmos
 public PITTimer(dOnTrigger HandleOnTrigger, int NanosecondsTimeout, bool Recuring) {
     this.HandleTrigger = HandleOnTrigger;
     this.NanosecondsTimeout = NanosecondsTimeout;
     this.NSRemaining = this.NanosecondsTimeout;
     this.Recuring = Recuring;
 }