DittoBus

public class DittoBus

Send and receive messages with remote Ditto peers in the mesh.

Ditto Bus is separate from the replicated document database. It is used to send one-off messages or create continuous channels with other peers in the mesh, without any persistence. Messages are treated as opaque binary by Ditto and must be created and interpreted by your app.

Possible uses include:

  • Remote control systems
  • Tunnelling other protocols
  • Gaming
  • Voice and video

Ditto Bus communications are always between two distinct peers, 1-to-1, and are offered with various delivery guarantees.

For simple use cases there is a single-message API. These are received on the other peer via DittoBusDelegate.

In advanced situations with requirements such as multiple overlapping streams, notification of stream start and end, and backpressure, individual streams can be opened using the openStream() function. Once opened, these are symmetric/bidirectional message-oriented communication channels. The remote peer will receive their stream via DittoBusDelegate.

  • Delegate for global bus events

    Declaration

    Swift

    public weak var delegate: DittoBusDelegate? { get set }
  • The dispatch queue on which Bus and BusStream events will be delivered.

    By default this is a separate serial queue. A custom queue may be provided.

    Declaration

    Swift

    public var delegateEventQueue: DispatchQueue { get set }
  • Send a single bus message to another peer, with no guarantees on delivery.

    A completion closure may be provided which will provide feedback about whether this message was transmitted (but not necessarily received.)

    Declaration

    Swift

    public func sendSingleUnreliableMessage(_ data: Data, to address: DittoAddress, completion: ((DittoSwiftError?) -> ())? = nil)
  • Send a single bus message to another peer, taking care that the message is delivered in full, if connectivity permits it.

    A completion closure may be provided which will provide feedback about whether this message was transmitted (but not necessarily received.)

    Declaration

    Swift

    public func sendSingleReliableMessage(_ data: Data, to address: DittoAddress, completion: ((DittoSwiftError?) -> ())? = nil)
  • Open a dedicated stream handle to a remote peer at the nominated reliability level.

    The completion closure will provide either the successfully-connected stream or an error.

    Make sure to set the delegate property on the new stream immediately when it is received in the completion closure. This ensures that no callbacks will be missed.

    Declaration

    Swift

    public func openStream(toAddress address: DittoAddress, reliability: DittoBusReliability, completion: @escaping (DittoBusStream?, DittoSwiftError?) -> ())