interface XConnectionBroker in module com::sun::star::bridge::

(Global Index)

Syntax

interface XConnectionBroker : com::sun::star::uno::XInterface ;

Description

defines the interface to be provided and handles remote connection on the server side.

See also

XConnection
for establish connection on client side.

See also

XConnectCallback.

Method Summary

acceptConnections starts accepting remote client connections.

stopAccepting stops accepting connections.

Method Details



acceptConnections

Syntax

boolean acceptConnections (
string aURL,
com::sun::star::bridge::XConnectCallback xCallback );

Description

starts accepting remote client connections.

For each connection attempt, the callback is called for accepting or refusing the connection.


stopAccepting

Syntax

void stopAccepting ();

Description

stops accepting connections.

Established connections will not be killed.

Top of Page