Microsoft SDK for Java

IRemoteThread Interface Methods

The IRemoteThread interface contains the following methods:

Destroy is not currently implemented in the Microsoft virtual machine.
GetCurrentFrame returns an IRemoteStackFrame interface representing the currently executing stack frame on this thread.
GetName returns the name of this thread.
GetSuspendCount returns a the number of times the Suspend method has been called on this thread.
GetThreadGroup returns an IRemoteThreadGroup interface representing the thread group that contains this thread.
Go resumes execution of the Java process.
RangeStep continues execution of this thread until the PC is outside the given range.
RangeStepIn continues execution of this thread until the PC is outside the given range.
Resume resumes execution of this thread after it was suspended by a previous call to Suspend.
Step steps over the current bytecode instruction in an interpreted method or the current source line in a JIT-compiled method.
StepIn steps over the current bytecode instruction in an interpreted method or the current source line in a JIT-compiled method.
StepOut continues execution until the current method returns to its caller.
Suspend suspends execution of this thread.

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