com.sun.squawk
Class CrossIsolateThread
java.lang.Object
   java.lang.Thread
java.lang.Thread
       com.sun.squawk.CrossIsolateThread
com.sun.squawk.CrossIsolateThread
- All Implemented Interfaces: 
- Runnable
- public class CrossIsolateThread 
- extends Thread
CrossIsolateThread is a package-private thread class that is allowed to be created in one isolate, but execute in the context of another isolate.
 The system uses this class to start the initial thread in an isolate, and to
 defer execution of callback handling threads. The class is simply used as a marker that it's OK to do this.
 NOTE: This class may revert to squawk-private again in the future.
 
 
| Constructor Summary | 
| CrossIsolateThread(Isolate target,
                   String name)Allocates a new
 CrossIsolateThreadobject
 to be run in the given isolate's context, with the given name. | 
 
 
| Methods inherited from class java.lang.Thread | 
| activeCount, currentThread, getName, getPriority, interrupt, isAlive, join, run, setPriority, sleep, start, toString, yield | 
 
 
CrossIsolateThread
public CrossIsolateThread(Isolate target,
                          String name)
- Allocates a new CrossIsolateThreadobject
 to be run in the given isolate's context, with the given name.
 Note that you must override CrossIsolateThread.run() if you want to do anything other than
 run the Isolate's run() method.
 
 
- Parameters:
- target- the isolate whose- runmethod is called.
- name- the name of the new thread.
 
"For updated information see the Java FRC site"