Ditto Connect
data class DittoConnect( var tcpServers: MutableSet<String> = mutableSetOf(), var websocketUrls: MutableSet<String> = mutableSetOf(), var retryIntervalMs: Long = 5000) : DittoConnect, Cloneable
Content copied to clipboard
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)
Content copied to clipboard