Creates a timer associated with this context that expires with
specified delay.

C# |
public LBMTimer createTimer( long milliseconds, LBMTimerCallback cb, Object cbArg )

- milliseconds (Int64)
- Number of milliseconds until the timer expires
- cb (LBMTimerCallback)
- Callback implementing the LBMTimerCallback delegate interface
- cbArg (Object)
- Callback object passed as token to callback interface

LBMTimer object

References to timers created using this method are not maintained internally. If the timer
returned by this method goes out of scope and is reclaimed by the garbage collector, callbacks
registered for this timer will not execute. To create a timer with an internally maintained
reference, see the scheduleTimer(Int64) method.