[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Assembly: NEsper (in NEsper.dll)
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) |
---|
Public Function CreateTimer ( _ timerCallback As TimerCallback, _ state As Object, _ dueTime As Integer, _ period As Integer _ ) As ITimer |
C# |
---|
public ITimer CreateTimer ( TimerCallback timerCallback, Object state, int dueTime, int period ) |
Visual C++ |
---|
public: virtual ITimer^ CreateTimer ( TimerCallback^ timerCallback, Object^ state, int dueTime, int period ) sealed |
Parameters
- timerCallback
- System.Threading.TimerCallback
- state
- System.Object
- dueTime
- System.Int32
- period
- System.Int32