Module OBus_transport

module OBus_transport: sig .. end
Low-level transporting of messages

type t 
Type of message transport
val recv : t -> OBus_message.t Lwt.t
recv tr receives one message from the given transport
val send : t -> OBus_message.t -> unit Lwt.t
send tr msg sends msg over the transport tr.
val capabilities : t -> OBus_auth.capability list
Returns the capabilities of the transport
val shutdown : t -> unit Lwt.t
shutdown tr free resources allocated by the given transport
val make : ?switch:Lwt_switch.t ->
recv:(unit -> OBus_message.t Lwt.t) ->
send:(OBus_message.t -> unit Lwt.t) ->
?capabilities:OBus_auth.capability list ->
shutdown:(unit -> unit Lwt.t) -> unit -> t
make ?switch ~recv ~send ~support_unxi_fd ~shutdown () creates a new transport from the given functions.
capabilities : defaults to [].

Notes:

val loopback : unit -> t
Loopback transport, each message sent is received on the same transport
val socket : ?switch:Lwt_switch.t ->
?capabilities:OBus_auth.capability list ->
Lwt_unix.file_descr -> t
socket ?switch ?capabilities socket creates a socket transport.
capabilities : defaults to []. For unix socket, the `Unix_fd capability is accepted.
val of_addresses : ?switch:Lwt_switch.t ->
?capabilities:OBus_auth.capability list ->
?mechanisms:OBus_auth.Client.mechanism list ->
OBus_address.t list -> (OBus_address.guid * t) Lwt.t
of_addresses ?switch ?capabilities ?mechanisms addresses tries to:

If all succeed, it returns the server address guid and the newly created transport, which is ready to send and receive messages.

Note about errors: