Package org.apache.xmlrpc.common
Class LocalStreamConnection.LocalServerStreamConnection
- java.lang.Object
-
- org.apache.xmlrpc.common.LocalStreamConnection.LocalServerStreamConnection
-
- All Implemented Interfaces:
ServerStreamConnection
- Enclosing class:
- LocalStreamConnection
private class LocalStreamConnection.LocalServerStreamConnection extends java.lang.Object implements ServerStreamConnection
-
-
Constructor Summary
Constructors Modifier Constructor Description privateLocalServerStreamConnection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Closes the connection, and frees resources.java.io.InputStreamnewInputStream()Returns the connections input stream.java.io.OutputStreamnewOutputStream()Returns the connections output stream.
-
-
-
Method Detail
-
newInputStream
public java.io.InputStream newInputStream() throws java.io.IOExceptionDescription copied from interface:ServerStreamConnectionReturns the connections input stream.- Specified by:
newInputStreamin interfaceServerStreamConnection- Throws:
java.io.IOException
-
newOutputStream
public java.io.OutputStream newOutputStream() throws java.io.IOExceptionDescription copied from interface:ServerStreamConnectionReturns the connections output stream.- Specified by:
newOutputStreamin interfaceServerStreamConnection- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOExceptionDescription copied from interface:ServerStreamConnectionCloses the connection, and frees resources.- Specified by:
closein interfaceServerStreamConnection- Throws:
java.io.IOException
-
-