1 8 9 package mx4j.tools.remote.caucho; 10 11 import java.io.IOException ; 12 13 16 public interface CauchoInput 17 { 18 public void startCall() throws IOException ; 19 20 public void completeCall() throws IOException ; 21 22 public String readHeader() throws IOException ; 23 24 public String readMethod() throws IOException ; 25 26 30 public Object readObject(Class cls) throws IOException ; 31 32 37 public void startReply() throws Exception ; 38 39 public void completeReply() throws IOException ; 40 } 41 | Popular Tags |