Package org.apache.xmlrpc.common
Interface ServerStreamConnection
- All Known Subinterfaces:
ServerHttpConnection
- All Known Implementing Classes:
Connection
,LocalStreamConnection.LocalServerStreamConnection
,XmlRpcServletServer.ServletStreamConnection
public interface ServerStreamConnection
Interface of an object, which is able to provide
an XML stream, containing an XML-RPC request.
Additionally, the object may also be used to
write the response as an XML stream.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Closes the connection, and frees resources.Returns the connections input stream.Returns the connections output stream.
-
Method Details
-
newInputStream
Returns the connections input stream.- Throws:
IOException
-
newOutputStream
Returns the connections output stream.- Throws:
IOException
-
close
Closes the connection, and frees resources.- Throws:
IOException
-