|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.openmuc.jositransport.ServerTSAP
public class ServerTSAP
This class implements the server Transport Service Access Point (TSAP) over TCP/IP as defined in RFC 1006, ISO 8072, and ISO 8073. It can be used to listen for incoming TConnections.
Constructor Summary | |
---|---|
ServerTSAP(int port,
int backlog,
java.net.InetAddress bindAddr,
TConnectionListener conListener)
Use this constructor to create a server TSAP that can listen on a port. |
|
ServerTSAP(int port,
int backlog,
java.net.InetAddress bindAddr,
TConnectionListener conListener,
javax.net.ServerSocketFactory serverSocketFactory)
Use this constructor to create a server TSAP that can listen on a port, with a specified ServerSocketFactory. |
|
ServerTSAP(int port,
TConnectionListener conListener)
Use this constructor to create a server TSAP that can listen on a port. |
Method Summary | |
---|---|
protected TConnectionListener |
getConnectionListener()
|
static int |
getMaxTPDUSize(int maxTPDUSizeParam)
Get the maximum TPDUSize. |
int |
getMaxTPDUSizeParam()
Get the maxTPDUSize Parameter to be used by this TSAP |
void |
setMaxConnections(int maxConnections)
Set the maximum number of connections that are allowed in parallel by the Server SAP. |
void |
setMaxTPDUSizeParam(int maxTPDUSizeParam)
Set the maxTPDUSize. |
void |
setMessageFragmentTimeout(int messageFragmentTimeout)
Set the TConnection timeout for receiving data once the beginning of a message has been received. |
void |
setMessageTimeout(int messageTimeout)
Set the TConnection timeout for waiting for the first byte of a new message. |
void |
startListening()
Starts a new thread that listens on the configured port. |
void |
stopListening()
Stop listing on the port. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ServerTSAP(int port, TConnectionListener conListener)
port
- the TCP port that the ServerSocket will connect to. Should be
between 1 and 65535.conListener
- the ConnectionListener that will be notified when remote TSAPs
are connecting or the server stopped listening.public ServerTSAP(int port, int backlog, java.net.InetAddress bindAddr, TConnectionListener conListener)
port
- the TCP port that the ServerSocket will connect to. Should be
between 1 and 65535.conListener
- the ConnectionListener that will be notified when remote TSAPs
are connecting or the server stopped listening.backlog
- is passed to the java.net.ServerSocketbindAddr
- the IP address to bind to. It is passed to
java.net.ServerSocketpublic ServerTSAP(int port, int backlog, java.net.InetAddress bindAddr, TConnectionListener conListener, javax.net.ServerSocketFactory serverSocketFactory)
port
- the TCP port that the ServerSocket will connect to. Should be
between 1 and 65535.conListener
- the ConnectionListener that will be notified when remote TSAPs
are connecting or the server stopped listening.backlog
- is passed to the java.net.ServerSocketbindAddr
- the IP address to bind to. It is passed to
java.net.ServerSocketserverSocketFactory
- The ServerSocketFactory to be used to create the ServerSocketMethod Detail |
---|
public void startListening() throws java.io.IOException
java.io.IOException
public void stopListening()
public void setMaxTPDUSizeParam(int maxTPDUSizeParam)
maxTPDUSizeParam
- The maximum length is equal to 2^(maxTPDUSizeParam) octets.
Note that the actual TSDU size that can be transfered is equal
to TPDUSize-3. Default is 65531 octets (see RFC 1006), 7 <=
maxTPDUSizeParam <= 16, needs to be set before listening or
connectingpublic void setMaxConnections(int maxConnections)
maxConnections
- the number of connections allowed (default is 100)public void setMessageTimeout(int messageTimeout) throws java.net.SocketException
messageTimeout
- in milliseconds
java.net.SocketException
public void setMessageFragmentTimeout(int messageFragmentTimeout) throws java.net.SocketException
messageFragmentTimeout
- in milliseconds
java.net.SocketException
public int getMaxTPDUSizeParam()
public static int getMaxTPDUSize(int maxTPDUSizeParam) throws java.io.IOException
maxTPDUSizeParam
-
java.io.IOException
protected TConnectionListener getConnectionListener()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |