The following example sets a timeout, and then cancels it.
public void myJob()
{
int timerHandle = 0;
this.setTimeOut(identifierstr(workerFunction), 0);
//Perform some operations.
timerHandle = this.getTimeOutTimerHandle();
this.cancelTimeOut( timerHandle );
}