diff options
Diffstat (limited to 'libjava/java/rmi/server/RemoteCall.java')
-rw-r--r-- | libjava/java/rmi/server/RemoteCall.java | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/libjava/java/rmi/server/RemoteCall.java b/libjava/java/rmi/server/RemoteCall.java index eac9ee233a9..7621152b688 100644 --- a/libjava/java/rmi/server/RemoteCall.java +++ b/libjava/java/rmi/server/RemoteCall.java @@ -46,14 +46,20 @@ import java.io.StreamCorruptedException; /** * @deprecated */ -public interface RemoteCall { +public interface RemoteCall +{ + public ObjectOutput getOutputStream () throws IOException; -public ObjectOutput getOutputStream() throws IOException; -public void releaseOutputStream() throws IOException; -public ObjectInput getInputStream() throws IOException; -public void releaseInputStream() throws IOException; -public ObjectOutput getResultStream(boolean success) throws IOException, StreamCorruptedException; -public void executeCall() throws Exception; -public void done() throws IOException; + public void releaseOutputStream () throws IOException; + public ObjectInput getInputStream () throws IOException; + + public void releaseInputStream () throws IOException; + + public ObjectOutput getResultStream (boolean success) + throws IOException, StreamCorruptedException; + + public void executeCall () throws Exception; + + public void done () throws IOException; } |