1 8 9 package mx4j.tools.remote.caucho; 10 11 import java.io.IOException ; 12 13 16 public interface CauchoOutput 17 { 18 public void startCall() throws IOException ; 19 20 public void completeCall() throws IOException ; 21 22 public void startReply() throws IOException ; 23 24 public void completeReply() throws IOException ; 25 26 public void writeHeader(String header) throws IOException ; 27 28 public void writeMethod(String methodName) throws IOException ; 29 30 public void writeObject(Object object) throws IOException ; 31 32 public void writeFault(Throwable fault) throws IOException ; 33 } 34 | Popular Tags |