[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Creates a timer. The timer will begin after dueTime (in milliseconds) has passed and will occur at an interval specified by the period.

Namespace: net.esper.compat
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Function CreateTimer ( _
	timerCallback As TimerCallback, _
	state As Object, _
	dueTime As Integer, _
	period As Integer _
) As ITimer
C#
ITimer CreateTimer (
	TimerCallback timerCallback,
	Object state,
	int dueTime,
	int period
)
Visual C++
ITimer^ CreateTimer (
	TimerCallback^ timerCallback, 
	Object^ state, 
	int dueTime, 
	int period
)

Parameters

timerCallback
System.Threading.TimerCallback
state
System.Object
dueTime
System.Int32
period
System.Int32

Return Value