public final class socketAcceptor extends Object implements com.sun.star.connection.XAcceptor
XAcceptor interface.
The socketAcceptor is a specialized component that uses TCP
sockets for communication. The socketAcceptor is generally used
by the com.sun.star.connection.Acceptor service.
XAcceptor,
XConnection2,
XConnector,
JavaLoader| Modifier and Type | Field and Description |
|---|---|
static String |
__serviceName
The name of the service.
|
| Constructor and Description |
|---|
socketAcceptor() |
| Modifier and Type | Method and Description |
|---|---|
static com.sun.star.lang.XSingleServiceFactory |
__getServiceFactory(String implName,
com.sun.star.lang.XMultiServiceFactory multiFactory,
com.sun.star.registry.XRegistryKey regKey)
Returns a factory for creating the service.
|
com.sun.star.connection.XConnection |
accept(String connectionDescription)
Accepts a connection request via the described socket.
|
void |
stopAccepting() |
public static final String __serviceName
The JavaLoader accesses this through reflection.
JavaLoader,
Constant Field Valuespublic static com.sun.star.lang.XSingleServiceFactory __getServiceFactory(String implName, com.sun.star.lang.XMultiServiceFactory multiFactory, com.sun.star.registry.XRegistryKey regKey)
This method is called by the JavaLoader.
implName - the name of the implementation for which a service is
requested.multiFactory - the service manager to be used (if needed).regKey - the registry key.XSingleServiceFactory for creating the component.JavaLoaderpublic com.sun.star.connection.XConnection accept(String connectionDescription) throws com.sun.star.connection.AlreadyAcceptingException, com.sun.star.connection.ConnectionSetupException, com.sun.star.lang.IllegalArgumentException
This call blocks until a connection has been established.
The connection description has the following format:
type*(key=value),
where type should be socket
(ignoring case). Supported keys (ignoring case) currently are
host
0, meaning any interface).
port
6001).
backlog
50).
tcpnodelay
0/1) enabling or disabling Nagle's
algorithm on the resulting connection.
accept in interface com.sun.star.connection.XAcceptorconnectionDescription - the description of the connection.XConnection to the client.com.sun.star.connection.AlreadyAcceptingExceptioncom.sun.star.connection.ConnectionSetupExceptioncom.sun.star.lang.IllegalArgumentExceptionXConnection,
XConnectorpublic void stopAccepting()
stopAccepting in interface com.sun.star.connection.XAcceptorXAcceptor.stopAccepting()