|
ScheduledTaskStart(Int32) Method
|
Starts a timer to run the task after a provided interval.
Namespace: GSF.ThreadingAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.255-beta+d64b121002b51165b41b0dbf6ccf4c8d3895faa3
Syntaxpublic void Start(
int delay
)
Public Sub Start (
delay As Integer
)
public:
void Start(
int delay
)
member Start :
delay : int -> unit
View SourceParameters
- delay Int32
- the delay in milliseconds before the task should run
Remarks
If a timer is currently pending, this function will do nothing. Do not use this
function to reset or restart an existing timer.
If called while working, a subsequent timer will be scheduled, but delay will not
start until after the worker has completed.
This method is safe to call from any thread, including the worker thread.
If disposed, this method will no nothing.
See Also