osl.scheduler.none
Class NoScheduler

java.lang.Object
  |
  +--osl.scheduler.none.NoScheduler

public class NoScheduler
extends java.lang.Object
implements Scheduler

This implementation of the Scheduler interface just relies on Java's default thread scheduling mechanisms. In particular, the schedule method does nothing and the scheduleThread method simply starts the thread.

Version:
$Revision: 1.3 $ ($Date: 1998/06/12 21:32:53 $)

Constructor Summary
NoScheduler()
           
 
Method Summary
 void schedulerInitialize()
          The initialization function for the scheduler.
 void scheduleThread(java.lang.Thread toSched)
          Just start the thread running here.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NoScheduler

public NoScheduler()
Method Detail

schedulerInitialize

public void schedulerInitialize()
The initialization function for the scheduler. This is called immediately after the scheduler is created but before it is started.
Specified by:
schedulerInitialize in interface Scheduler

scheduleThread

public void scheduleThread(java.lang.Thread toSched)
                    throws java.lang.IllegalThreadStateException
Just start the thread running here.
Specified by:
scheduleThread in interface Scheduler