| com.tc.objectserver.control.ServerControl
All known Subclasses: com.tc.objectserver.control.ServerControlBase, com.tc.objectserver.control.NullServerControl,
ServerControl | public interface ServerControl (Code) | | |
Method Summary | |
public void | attemptShutdown() Starts the shutdown sequence, but doesn't block. | public void | crash() Forces the server to exit, blocking until isRunning() is false. | public int | getAdminPort() | public int | getDsoPort() | public boolean | isRunning() Returns true if the server responds. | public void | mergeSTDERR() | public void | mergeSTDOUT() | public void | shutdown() Starts the shutdown sequence, blocking until isRunning() is false. | public void | start() Starts the server, blocking until isRunning() is true. | public void | waitUntilShutdown() |
attemptShutdown | public void attemptShutdown() throws Exception(Code) | | Starts the shutdown sequence, but doesn't block.
|
crash | public void crash() throws Exception(Code) | | Forces the server to exit, blocking until isRunning() is false.
|
getAdminPort | public int getAdminPort()(Code) | | |
getDsoPort | public int getDsoPort()(Code) | | |
isRunning | public boolean isRunning()(Code) | | Returns true if the server responds.
|
mergeSTDERR | public void mergeSTDERR()(Code) | | |
mergeSTDOUT | public void mergeSTDOUT()(Code) | | |
shutdown | public void shutdown() throws Exception(Code) | | Starts the shutdown sequence, blocking until isRunning() is false.
|
start | public void start() throws Exception(Code) | | Starts the server, blocking until isRunning() is true.
|
|
|