public interface CauchoInput
| Modifier and Type | Method and Description |
|---|---|
void |
completeCall() |
void |
completeReply() |
java.lang.String |
readHeader() |
java.lang.String |
readMethod() |
java.lang.Object |
readObject(java.lang.Class cls)
Reads and returns an object of the given class,
or a generic object if the class is null.
|
void |
startCall() |
void |
startReply()
Starts reading a reply of a previous call; if the call threw an exception,
the exception is read and re-thrown, otherwise the result of the call
can be read using
readObject(java.lang.Class). |
void startCall()
throws java.io.IOException
java.io.IOExceptionvoid completeCall()
throws java.io.IOException
java.io.IOExceptionjava.lang.String readHeader()
throws java.io.IOException
java.io.IOExceptionjava.lang.String readMethod()
throws java.io.IOException
java.io.IOExceptionjava.lang.Object readObject(java.lang.Class cls)
throws java.io.IOException
java.io.IOExceptionvoid startReply()
throws java.lang.Exception
readObject(java.lang.Class).java.lang.Exceptionvoid completeReply()
throws java.io.IOException
java.io.IOException