Метод | Описание | |
---|---|---|
Dispose ( ) : void |
clean up shop
|
|
MakeTimer ( TimerCallback cb, int d = Timeout.Infinite, int p = Timeout.Infinite ) : |
Wrap and start timer a with added functionality, and make sure it dies with this TimerManager This DOES NOT START IT.
|
|
MakeTimer ( |
Add a wrapped timer to the hashset
|
|
RemoveTimer ( |
Stop tracking a timer, and kill it
|
|
StartTimer ( TimerCallback cb, int d = Timeout.Infinite, int p = Timeout.Infinite ) : |
Wrap a timer a with added functionality, and make sure it dies with this TimerManager This DOES NOT START IT.
|
public MakeTimer ( TimerCallback cb, int d = Timeout.Infinite, int p = Timeout.Infinite ) : |
||
cb | TimerCallback | /// The callback of the wrapped timer /// |
d | int | /// The delay it should have /// |
p | int | /// The period it should have /// |
Результат |
public MakeTimer ( |
||
t | the wrapped timer | |
Результат | void |
public RemoveTimer ( |
||
t | The timer to forget and kill | |
Результат | void |
public StartTimer ( TimerCallback cb, int d = Timeout.Infinite, int p = Timeout.Infinite ) : |
||
cb | TimerCallback | /// The callback of the wrapped timer /// |
d | int | /// The delay it should have /// |
p | int | /// The period it should have /// |
Результат |