public class MuxServer
extends java.lang.Object
Constructor and Description |
---|
MuxServer()
Null argument constructor.
|
MuxServer(java.io.InputStream is,
java.io.OutputStream os,
boolean isClient)
Create a new multiplexor with input and output streams.
|
Modifier and Type | Method and Description |
---|---|
void |
close()
Close the mux
|
java.io.InputStream |
getInputStream()
Gets the raw input stream.
|
java.io.OutputStream |
getOutputStream()
Gets the raw output stream.
|
void |
init(java.io.InputStream is,
java.io.OutputStream os,
boolean isClient)
Initialize the multiplexor with input and output streams.
|
boolean |
readRequest(MuxInputStream in,
MuxOutputStream out)
Reads a server request.
|
boolean |
startCall(int channel,
MuxInputStream in,
MuxOutputStream out)
Starts a client call.
|
boolean |
startCall(MuxInputStream in,
MuxOutputStream out)
Starts a client call.
|
public MuxServer()
public MuxServer(java.io.InputStream is, java.io.OutputStream os, boolean isClient)
is
- the underlying input streamos
- the underlying output streamisClient
- true if this is the connection client.public void init(java.io.InputStream is, java.io.OutputStream os, boolean isClient)
is
- the underlying input streamos
- the underlying output streamisClient
- true if this is the connection client.public java.io.InputStream getInputStream()
public java.io.OutputStream getOutputStream()
public boolean startCall(MuxInputStream in, MuxOutputStream out) throws java.io.IOException
java.io.IOException
public boolean startCall(int channel, MuxInputStream in, MuxOutputStream out) throws java.io.IOException
java.io.IOException
public boolean readRequest(MuxInputStream in, MuxOutputStream out) throws java.io.IOException
java.io.IOException
public void close() throws java.io.IOException
java.io.IOException