com.mysql.management.util
Interface RuntimeI

All Known Implementing Classes:
RuntimeI.Default, RuntimeI.Stub

public interface RuntimeI


Nested Class Summary
static class RuntimeI.Default
           
static class RuntimeI.Stub
           
 
Method Summary
 void addShutdownHook(java.lang.Thread hook)
           
 int availableProcessors()
           
 java.lang.Process exec(java.lang.String command)
           
 java.lang.Process exec(java.lang.String[] cmdarray)
           
 java.lang.Process exec(java.lang.String[] cmdarray, java.lang.String[] envp)
           
 java.lang.Process exec(java.lang.String[] cmdarray, java.lang.String[] envp, java.io.File dir)
           
 java.lang.Process exec(java.lang.String cmd, java.lang.String[] envp)
           
 java.lang.Process exec(java.lang.String command, java.lang.String[] envp, java.io.File dir)
           
 void exit(int status)
           
 long freeMemory()
           
 void gc()
           
 java.io.InputStream getLocalizedInputStream(java.io.InputStream in)
          Deprecated. As of JDK 1.1, the preferred way to translate a byte stream in the local encoding into a character stream in Unicode is via the InputStreamReader and BufferedReader classes.
 java.io.OutputStream getLocalizedOutputStream(java.io.OutputStream out)
          Deprecated. As of JDK 1.1, the preferred way to translate a Unicode character stream into a byte stream in the local encoding is via the OutputStreamWriter, BufferedWriter, and PrintWriter classes.
 void halt(int status)
           
 void load(java.lang.String filename)
           
 void loadLibrary(java.lang.String libname)
           
 long maxMemory()
           
 boolean removeShutdownHook(java.lang.Thread hook)
           
 void runFinalization()
           
 long totalMemory()
           
 void traceInstructions(boolean on)
           
 void traceMethodCalls(boolean on)
           
 

Method Detail

addShutdownHook

void addShutdownHook(java.lang.Thread hook)
See Also:
{

availableProcessors

int availableProcessors()
See Also:
Runtime.availableProcessors()

exec

java.lang.Process exec(java.lang.String command,
                       java.lang.String[] envp,
                       java.io.File dir)
See Also:
Runtime.exec(java.lang.String, java.lang.String[], java.io.File)

exec

java.lang.Process exec(java.lang.String cmd,
                       java.lang.String[] envp)
See Also:
Runtime.exec(java.lang.String, java.lang.String[])

exec

java.lang.Process exec(java.lang.String command)
See Also:
Runtime.exec(java.lang.String)

exec

java.lang.Process exec(java.lang.String[] cmdarray,
                       java.lang.String[] envp,
                       java.io.File dir)
See Also:
Runtime.exec(java.lang.String[], java.lang.String[], java.io.File)

exec

java.lang.Process exec(java.lang.String[] cmdarray,
                       java.lang.String[] envp)
See Also:
Runtime.exec(java.lang.String[], java.lang.String[])

exec

java.lang.Process exec(java.lang.String[] cmdarray)
See Also:
Runtime.exec(java.lang.String[])

exit

void exit(int status)
See Also:
Runtime.exit(int)

freeMemory

long freeMemory()
See Also:
Runtime.freeMemory()

gc

void gc()
See Also:
Runtime.gc()

getLocalizedInputStream

java.io.InputStream getLocalizedInputStream(java.io.InputStream in)
Deprecated. As of JDK 1.1, the preferred way to translate a byte stream in the local encoding into a character stream in Unicode is via the InputStreamReader and BufferedReader classes.

See Also:
Runtime.getLocalizedInputStream(java.io.InputStream)

getLocalizedOutputStream

java.io.OutputStream getLocalizedOutputStream(java.io.OutputStream out)
Deprecated. As of JDK 1.1, the preferred way to translate a Unicode character stream into a byte stream in the local encoding is via the OutputStreamWriter, BufferedWriter, and PrintWriter classes.

See Also:
Runtime.getLocalizedOutputStream(java.io.OutputStream)

halt

void halt(int status)
See Also:
Runtime.halt(int)

load

void load(java.lang.String filename)
See Also:
Runtime.load(java.lang.String)

loadLibrary

void loadLibrary(java.lang.String libname)
See Also:
Runtime.loadLibrary(java.lang.String)

maxMemory

long maxMemory()
See Also:
Runtime.maxMemory()

removeShutdownHook

boolean removeShutdownHook(java.lang.Thread hook)
See Also:
Runtime.removeShutdownHook(java.lang.Thread)

runFinalization

void runFinalization()
See Also:
Runtime.runFinalization()

totalMemory

long totalMemory()
See Also:
Runtime.totalMemory()

traceInstructions

void traceInstructions(boolean on)
See Also:
Runtime.traceInstructions(boolean)

traceMethodCalls

void traceMethodCalls(boolean on)
See Also:
Runtime.traceMethodCalls(boolean)


Copyright © 2004-2011. All Rights Reserved.