public interface IpcResponse
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Signals that we are finished with this response.
|
java.lang.String |
getMessage() |
java.lang.Object |
getNext()
throws UnsupportedOperationException if not implemented by this response implementation.
|
java.lang.Object |
getResult()
throws UnsupportedOperationException if not implemented by this response implementation.
|
java.io.InputStream |
getStream()
throws UnsupportedOperationException if not implemented by this response implementation.
|
void |
initialize(java.lang.Object o)
initialize the request with the response object from the server.
|
boolean |
isStreamable() |
boolean |
isSuccess() |
boolean isStreamable()
java.lang.Object getNext()
java.lang.Object getResult()
java.io.InputStream getStream()
boolean isSuccess()
java.lang.String getMessage()
void initialize(java.lang.Object o)
o - original response object, e.g. an input stream.void close()