Package com.ericsson.otp.erlang
Interface OtpTransport
- 
- All Known Implementing Classes:
- OtpSocketTransport
 
 public interface OtpTransportClient-side connection-oriented transport interface.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()java.io.InputStreamgetInputStream()java.io.OutputStreamgetOutputStream()
 
- 
- 
- 
Method Detail- 
getInputStreamjava.io.InputStream getInputStream() throws java.io.IOException- Throws:
- java.io.IOException
- See Also:
- Socket.getInputStream()
 
 - 
getOutputStreamjava.io.OutputStream getOutputStream() throws java.io.IOException- Throws:
- java.io.IOException
- See Also:
- Socket.getOutputStream()
 
 - 
closevoid close() throws java.io.IOException- Throws:
- java.io.IOException
- See Also:
- Socket.close()
 
 
- 
 
-