waba.sys
Interface Thread


public interface Thread

A simple non-preemptive thread model. Does not support any type of concurrency. The run method is called when the system is idle, and it must be simple and return as fast as possible, because it blocks the VM. Important: the synchronized keyword is not implemented by the SuperWaba VM. Note that in PalmOS while the user is writting in the grafitti area all events (including threads) are blocked (this is a Operating System behaviour).


Method Summary
 void run()
           
 void started()
          Called just before the thread is started
 void stopped()
          Called just after the thread is stopped
 

Method Detail

run

public void run()

started

public void started()
Called just before the thread is started

stopped

public void stopped()
Called just after the thread is stopped