1 16 package org.apache.axis.ime; 17 18 25 public interface MessageExchangeLifecycle { 26 27 30 public void init(); 31 32 35 public void cleanup() 36 throws InterruptedException ; 37 38 42 public void shutdown(); 43 44 49 public void shutdown(boolean force); 50 51 55 public void awaitShutdown() 56 throws InterruptedException ; 57 58 62 public void awaitShutdown(long timeout) 63 throws InterruptedException ; 64 65 } 66 | Popular Tags |