com.sun.rtsjx
Interface JRTSDebugMXBean


public interface JRTSDebugMXBean

Balance determinism and debugging functionality.


Method Summary
 void activateDebuggingMode()
          Change the behavior to the original non deterministic HotSpot mode.
 void activateDeterministicMode()
          Change the behavior to avoid jitter.
 java.lang.String getDescription()
          Short description of the MBean.
 java.lang.String getModeInfo()
          Additional explanation for the mode.
 boolean isDeterministicMode()
          Return true if in deterministic mode.
 void setDeterministicMode(boolean value)
          Set the mode.
 

Method Detail

getDescription

java.lang.String getDescription()
Short description of the MBean.

Returns:
a string describing this MBean.

isDeterministicMode

boolean isDeterministicMode()
Return true if in deterministic mode.

Returns:
true to activate the deterministic mode, or false for the non-deterministic HotSpot mode.

setDeterministicMode

void setDeterministicMode(boolean value)
Set the mode.

Parameters:
value - true to avoid jitter, or false for the non-deterministic HotSpot mode.

getModeInfo

java.lang.String getModeInfo()
Additional explanation for the mode.

Returns:
a string describing the mode.

activateDebuggingMode

void activateDebuggingMode()
Change the behavior to the original non deterministic HotSpot mode.


activateDeterministicMode

void activateDeterministicMode()
Change the behavior to avoid jitter.