KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mx4j > tools > remote > caucho > CauchoOutput


1 /*
2  * Copyright (C) The MX4J Contributors.
3  * All rights reserved.
4  *
5  * This software is distributed under the terms of the MX4J License version 1.0.
6  * See the terms of the MX4J License in the documentation provided with this software.
7  */

8
9 package mx4j.tools.remote.caucho;
10
11 import java.io.IOException JavaDoc;
12
13 /**
14  * @version $
15  */

16 public interface CauchoOutput
17 {
18    public void startCall() throws IOException JavaDoc;
19
20    public void completeCall() throws IOException JavaDoc;
21
22    public void startReply() throws IOException JavaDoc;
23
24    public void completeReply() throws IOException JavaDoc;
25
26    public void writeHeader(String JavaDoc header) throws IOException JavaDoc;
27
28    public void writeMethod(String JavaDoc methodName) throws IOException JavaDoc;
29
30    public void writeObject(Object JavaDoc object) throws IOException JavaDoc;
31
32    public void writeFault(Throwable JavaDoc fault) throws IOException JavaDoc;
33 }
34
Popular Tags