1 4 package com.tc.objectserver.control; 5 6 public interface ServerControl { 7 8 public void mergeSTDOUT(); 9 10 public void mergeSTDERR(); 11 12 15 public void attemptShutdown() throws Exception ; 16 17 20 public void shutdown() throws Exception ; 21 22 25 public void crash() throws Exception ; 26 27 30 public void start(long timeout) throws Exception ; 31 32 35 public boolean isRunning(); 36 37 public void clean(); 38 39 public void waitUntilShutdown() throws Exception ; 40 41 public int getDsoPort(); 42 43 } | Popular Tags |