Ditto 3.0.6
Public Member Functions | Protected Member Functions | Properties | Events | List of all members
DittoSDK.Ditto Class Reference

The entrypoint to the Ditto SDK. More...

Inheritance diagram for DittoSDK.Ditto:

Public Member Functions

 Ditto (DittoIdentity identity=default, string workingDir="ditto")
 Initializes a new instance of the Ditto class. More...
 
string AppId ()
 Get the Ditto application Id. More...
 
void StartSync ()
 Starts the network transports. Ditto will connect to other devices. More...
 
void StopSync ()
 Stops all network transports. More...
 
void SetOfflineOnlyLicenseToken (string licenseToken)
 Activate an offline Ditto instance by setting a license token. You cannot sync with Ditto before you have activated it. The offline license token is only valid for Development, Manual, OfflinePlayground and SharedKey identities. More...
 
DittoTransportDiagnostics TransportDiagnostics ()
 Request bulk status information about the transports. This is mostly intended for statistical or debugging purposes. More...
 
DittoPeersObserver ObservePeers (Action< List< DittoRemotePeer > > callback)
 Request information about Ditto peers in range of this device. This method returns an observer which should be held as long as updates are required. A newly registered observer will have a peers update delivered to it immediately. From then on it will be invoked repeatedly when Ditto devices come and go, or the active connections to them change. More...
 
void DisableSyncWithV2 ()
 Explicitly opt-in to disabling the ability to sync with Ditto peers running any version of the SDK in the v2 series of releases. More...
 
void RunGarbageCollection ()
 Removes all sync metadata for any remote peers which aren't currently connected. This method shouldn't usually be called. Manually running garbage collection often will result in slower sync times. Ditto automatically runs a garbage collection process in the background at optimal times. More...
 

Protected Member Functions

override void Dispose (bool disposing)
 Overload for types to dispose of resources, regardless of whether the type is being disposed or finalized. Note that finalization occurs on a dedicated thread. More...
 

Properties

bool IsSyncActive [get]
 Gets a value indicating whether or not sync is active. Use StartSync() to activate and StopSync() to deactivate sync.
 
bool Activated [get]
 Gets a value indicating whether or not the SDK has been activated. More...
 
string DeviceName [get, set]
 Gets or sets a custom identifier for the current device. More...
 
ulong SiteId [get]
 Gets the unique identifier of a peer in Ditto's distributed mesh network. More...
 
string PersistenceDirectory [get]
 Gets the persistence directory used by Ditto to persist data.
 
DittoStore Store [get]
 Gets a reference to the embedded data store.
 
DittoPresence Presence [get]
 Gets a reference to the presence manager.
 
DittoDiskUsage DiskUsage [get]
 Gets a reference to the disk usage.
 
string SDKVersion [get]
 Gets a string identifying the version of the Ditto SDK. More...
 
DittoAuthenticator Auth [get]
 Gets a DittoAuthenticator that provides access to authentication information and methods for logging on to Ditto Cloud.
 
DittoTransportConfig TransportConfig [get, set]
 Gets or sets assign a new transports configuration. By default peer-to-peer transports are enabled. More...
 

Events

EventHandler< DittoTransportConditionChangedEventArgs > DittoTransportConditionChanged
 An optional EventHandler delegate that can be provided to get updates about events relating to changes in network transports.
 
EventHandler< DittoAuthenticationRequestEventArgsDittoIdentityProviderAuthenticationRequest
 An optional EventHandler delegate that can be provided to respond to incoming authentication requests from peers who wish to join the Ditto mesh. Requires setup of signing and verification keys in the Http part of TransportConfig.
 

Detailed Description

The entrypoint to the Ditto SDK.

For a Ditto instance to continue to connect to other devices it must be kept in scope.

Constructor & Destructor Documentation

◆ Ditto()

DittoSDK.Ditto.Ditto ( DittoIdentity  identity = default,
string  workingDir = "ditto" 
)
inline

Initializes a new instance of the Ditto class.

Parameters
identityProvide the identity of the entity that is interacting with Ditto.
workingDirThe directory that will be used to persist Ditto data.

Member Function Documentation

◆ AppId()

string DittoSDK.Ditto.AppId ( )
inline

Get the Ditto application Id.

Returns
The Ditto application Id.

◆ DisableSyncWithV2()

void DittoSDK.Ditto.DisableSyncWithV2 ( )
inline

Explicitly opt-in to disabling the ability to sync with Ditto peers running any version of the SDK in the v2 series of releases.

Assuming this succeeds then this peer will only be able to sync with other peers using SDKs in the v3 series of releases. Note that this disabling of sync spreads to peers that sync with a peer that has disabled, or has (transitively) had disabled, syncing with v2 SDK peers.

◆ Dispose()

override void DittoSDK.Ditto.Dispose ( bool  disposing)
inlineprotected

Overload for types to dispose of resources, regardless of whether the type is being disposed or finalized. Note that finalization occurs on a dedicated thread.

Parameters
disposingtrue when invoked from an explicit Dispose() call. false when invoked from the finalizer.

◆ ObservePeers()

DittoPeersObserver DittoSDK.Ditto.ObservePeers ( Action< List< DittoRemotePeer > >  callback)
inline

Request information about Ditto peers in range of this device. This method returns an observer which should be held as long as updates are required. A newly registered observer will have a peers update delivered to it immediately. From then on it will be invoked repeatedly when Ditto devices come and go, or the active connections to them change.

Parameters
callbackThe Action that will be invoked when there is a presence update.
Returns
A DittoPeersObserver instance, which must be retained to continue receiving callback updates.

◆ RunGarbageCollection()

void DittoSDK.Ditto.RunGarbageCollection ( )
inline

Removes all sync metadata for any remote peers which aren't currently connected. This method shouldn't usually be called. Manually running garbage collection often will result in slower sync times. Ditto automatically runs a garbage collection process in the background at optimal times.

Manually running garbage collection is typically only useful during testing if large amounts of data are being generated. Alternatively, if an entire data set is to be evicted and it's clear that maintaining this metadata isn't necessary, then garbage collection could be run after evicting the old data.

◆ SetOfflineOnlyLicenseToken()

void DittoSDK.Ditto.SetOfflineOnlyLicenseToken ( string  licenseToken)
inline

Activate an offline Ditto instance by setting a license token. You cannot sync with Ditto before you have activated it. The offline license token is only valid for Development, Manual, OfflinePlayground and SharedKey identities.

Parameters
licenseTokenThe license token to activate the Ditto instance with, which you can find on the Ditto portal (https://portal.ditto.live).
Exceptions
DittoExceptionThrown if the provided license token is expired or invalid.
ExceptionThrown if you attempt to set an offline license token on an online idetity.

◆ StartSync()

void DittoSDK.Ditto.StartSync ( )
inline

Starts the network transports. Ditto will connect to other devices.

By default Ditto will enable all peer-to-peer transport types. The network configuration can be customized using the SetTransportConfig method.

Exceptions
DittoExceptionThrown if the Ditto instance hasn't been activated by a successful call to SetLicenseToken.

◆ StopSync()

void DittoSDK.Ditto.StopSync ( )
inline

Stops all network transports.

You may continue to use the database locally but no data will sync to or from other devices.

◆ TransportDiagnostics()

DittoTransportDiagnostics DittoSDK.Ditto.TransportDiagnostics ( )
inline

Request bulk status information about the transports. This is mostly intended for statistical or debugging purposes.

Returns
An instance of DittoTransportDiagnostics that represents the current state of the network transports that the SDK is using.

Property Documentation

◆ Activated

bool DittoSDK.Ditto.Activated
get

Gets a value indicating whether or not the SDK has been activated.

If false then you need to call Ditto.SetLicenseToken(string) before interacting with the SDK.

◆ DeviceName

string DittoSDK.Ditto.DeviceName
getset

Gets or sets a custom identifier for the current device.

When using ObservePeers(), each remote peer is represented by a short UTF-8 "device name". By default this will be a truncated version of the device's hostname. It does not need to be unique among peers. Configure the device name before calling StartSync(). If it is too long it may be truncated.

◆ SDKVersion

string DittoSDK.Ditto.SDKVersion
get

Gets a string identifying the version of the Ditto SDK.

Returns
A string identifying the version of the Ditto SDK.

◆ SiteId

ulong DittoSDK.Ditto.SiteId
get

Gets the unique identifier of a peer in Ditto's distributed mesh network.

IMPORTANT: This must be unique or the merging and conflict resolution will have unexpected behavior.

◆ TransportConfig

DittoTransportConfig DittoSDK.Ditto.TransportConfig
getset

Gets or sets assign a new transports configuration. By default peer-to-peer transports are enabled.

You may use this method to alter the configuration at any time, however sync will not begin until StartSync() is called.