Microsoft SDK for Java

SystemThread Class

The SystemThread class of the com.ms.lang package represents a thread that is always created in the system thread group (the highest level thread group, which has no parent). Untrusted code cannot create threads in the system thread group.

public class SystemThread extends Thread
{
  // Constructors
  public SystemThread();
  public SystemThread(String name);
  public SystemThread(Runnable target);
  public SystemThread(Runnable target,String name);

  // Methods
  public static ThreadGroup getSystemThreadGroup();
}

Hierarchy

Thread
  |
  +--SystemThread

See Also

java.lang.Thread, java.lang.ThreadGroup

© 1999 Microsoft Corporation. All rights reserved. Terms of use.