Verwendungen von Klasse
org.freedesktop.dbus.connections.transports.AbstractTransport
Package
Beschreibung
-
Verwendungen von AbstractTransport in org.freedesktop.dbus.bin
Modifizierer und TypMethodeBeschreibungEmbeddedDBusDaemon.getBindCallback()
Configured bind callback.EmbeddedDBusDaemon.getConnectCallback()
Configured pre-connect callback.Modifizierer und TypMethodeBeschreibungvoid
EmbeddedDBusDaemon.setBindCallback
(Consumer<AbstractTransport> _callback) Callback which will be called by transport right after the server socket was bound.
Server will not yet accept connections at this point, but it started listening on the configured address.void
EmbeddedDBusDaemon.setConnectCallback
(Consumer<AbstractTransport> _connectCallback) Callback which will be called by transport right before the socket is bound and connections will be accepted. -
Verwendungen von AbstractTransport in org.freedesktop.dbus.connections
Modifizierer und TypMethodeBeschreibungboolean
SASL.auth
(SocketChannel _sock, AbstractTransport _transport) Performs SASL auth on the given socketchannel. -
Verwendungen von AbstractTransport in org.freedesktop.dbus.connections.base
Modifizierer und TypMethodeBeschreibungprotected AbstractTransport
AbstractConnectionBase.getTransport()
The currently configured transport. -
Verwendungen von AbstractTransport in org.freedesktop.dbus.connections.config
Modifizierer und TypMethodeBeschreibungTransportConfig.getAfterBindCallback()
TransportConfig.getPreConnectCallback()
Modifizierer und TypMethodeBeschreibungvoid
TransportConfig.setAfterBindCallback
(Consumer<AbstractTransport> _afterBindCallback) void
TransportConfig.setPreConnectCallback
(Consumer<AbstractTransport> _preConnectCallback) TransportConfigBuilder.withAfterBindCallback
(Consumer<AbstractTransport> _callback) Set a callback which will be called afterbindImpl()
on a server connection was called.
This method is only called if the transport is configured as server connection.TransportConfigBuilder.withPreConnectCallback
(Consumer<AbstractTransport> _callback) Set a callback which will be called right before the connection to the transport is established. -
Verwendungen von AbstractTransport in org.freedesktop.dbus.connections.transports
Modifizierer und TypMethodeBeschreibungTransportBuilder.build()
Create the transport with the previously provided configuration.Modifizierer und TypMethodeBeschreibungvoid
AbstractTransport.setPreConnectCallback
(Consumer<AbstractTransport> _run) Set a callback which will be called right before the connection will be established to the transport. -
Verwendungen von AbstractTransport in org.freedesktop.dbus.spi.transport
Modifizierer und TypMethodeBeschreibungITransportProvider.createTransport
(BusAddress _address, TransportConfig _config) Creates a new instance of this transport service using the given bus address.