DittoConnect

open class DittoConnect(    var tcpServers: MutableSet<String> = mutableSetOf(),     var websocketUrls: MutableSet<String> = mutableSetOf(),     var retryIntervalMs: Long = 5000)

Specific servers that Ditto should attempt to connect to.

TCP servers are specified as "host:port". Websocket URLs take the form "wss://hydra.ditto.live".

Please refer to the documentation on Ditto's website for configuring cloud or client/server scenarios.

Constructors

Link copied to clipboard
fun DittoConnect(    tcpServers: MutableSet<String> = mutableSetOf(),     websocketUrls: MutableSet<String> = mutableSetOf(),     retryIntervalMs: Long = 5000)

Properties

Link copied to clipboard
open var retryIntervalMs: Long = 5000
Link copied to clipboard
open var tcpServers: MutableSet<String>
Link copied to clipboard
open var websocketUrls: MutableSet<String>

Inheritors

Link copied to clipboard