DittoSyncKit  1.0.0-alpha4
Class List
Here are the classes, structs, unions and interfaces with brief descriptions:
[detail level 1234]
 NDitto
 NSyncKit
 CAttachmentTokenExceptionAn exception that is thrown when trying to extract an attachment token from an invalid source
 CDittoAttachmentA reference to a binary attachment file
 CDittoAttachmentFetcherThese objects are returned by calls to DittoCollection.FetchAttachment(DittoAttachmentToken, Action<DittoAttachmentStatus>)
 CDittoAttachmentFetcherCtx
 CDittoAttachmentStatusA representation of the status of an attachment
 CCompletedAn attachment status used when the attachment's download has completed
 CDeletedAn attachment status used when the attachment is deleted
 CIncompleteAn attachment status used when the attachment's download is incomplete
 CDittoAttachmentTokenServes as a token for a specific attachment that you can pass to a call to DittoCollection.FetchAttachment(DittoAttachmentToken, Action<DittoAttachmentStatus>)
 CDittoCollectionA reference to a collection in a DittoStore
 CDittoDocumentA document in a DittoCollection
 CDittoDocumentPathProvides an interface to specify a path to a key in a document that you can then call a function on to get the value at the specified key as a specific type
 CDittoHandleWrapperProvides a GC object to hold the Rust pointer so disposes can be out of order Same pattern as in C++, Cocoa and (most recently) Android
 CDittoIdentityUsed to identify a given peer in your network. In practice a peer may be a user, a device, or it might be some other entity in your system
 CDittoLiveQueryA reference to a Live Query. The live query will respond to any changes relevant to the query that occur in the device's data store. Do not instantiate this by itself. The live query will keep the handler informed of all changes so long as it is not garbage collected or disposed
 CDittoLiveQueryCtxThe meat of the LiveQuery logic / object. This object is the one that handles callbacks from Rust
 CDittoLiveQueryEventDescribes events delivered by a DittoLiveQuery
 CInitialA type used for the first event delivered for a live query
 CUpdateA description of updates that occurred between the current and previous times that the live query handler was fired
 CDittoLiveQueryMoveAn object that describes how a document's position in a live query's list of matching documents has changed since the previous live query event
 CDittoMutableDocumentA special reference to a DittoDocument that can be used to perform mutation on a document. Do not instantiate directly. This reference should never leave the scope of the lambda provided as part of a call to DittoPendingCursorOperation.Update(Action<List<DittoMutableDocument>>) or DittoPendingIDSpecificOperation.Update(Action<DittoMutableDocument>) and should not be used across different threads
 CDittoMutableDocumentPathProvides an interface to specify a path to a key in a document that you can then call various update functions on. You obtain a DittoMutableDocumentPath by subscripting a DittoMutableDocument and you can then further subscript a DittoMutableDocumentPath to further specify the key of the document that you want to update
 CDittoPendingCursorOperationThese objects are returned when using find-like functionality on DittoCollection objects
 CDittoPendingIDSpecificOperationThese objects are returned when using DittoCollection.FindById(string) functionality
 CDittoScopedWriteTransactionExposes functionality that allows you to perform multiple operations on the store within a single write transaction
 CDittoSingleDocumentLiveQueryEventProvides information about a live query event relating to a single document live query
 CDittoStoreA class encompassing functionality relating to the embedded storage. This is not a class you instantiate directly. Instead you access DittoStore objects using DittoSyncKit.Store
 CDittoSubscriptionA reference to a subscription to data with other remote peers. You do not instantiate DittoSubscription objects directly. Instead they are created by calling DittoPendingCursorOperation.Subscribe or DittoPendingIDSpecificOperation.Subscribe
 CDittoSyncKitThe entrypoint to the DittoSyncKit SDK
 CDittoUpdateResultProvides information about a successful update operation on a document
 CIncrementedAn update result when an Increment operation was performed
 CInsertedAn update result when an Insert operation was performed
 CPoppedAn update result when a Pop operation was performed
 CPushedAn update result when a Push operation was performed
 CRemovedAn update result when a Remove operation was performed
 CReplacedWithCounterAn update result when a ReplaceWithCounter operation was performed
 CSetAn update result when a Set operation was performed
 CDittoWriteTransactionExposes functionality that allows you to perform multiple operations on the store within a single write transaction
 CDittoWriteTransactionPendingCursorOperationThese objects are returned when using DittoScopedWriteTransaction.Find(string) or DittoScopedWriteTransaction.FindAll
 CDittoWriteTransactionPendingIDSpecificOperationThese objects are returned when using DittoScopedWriteTransaction.FindById(string) functionality
 CDittoWriteTransactionResultProvides information about the result of an operation on a document that was part of a write transaction
 CEvictedRepresents a write transaction result when a document has been evicted
 CInsertedRepresents a write transaction result when a document has been inserted
 CRemovedRepresents a write transaction result when a document has been removed
 CUpdatedRepresents a write transaction result when a document has been updated
 CDocumentHandleWrapper
 CDocumentPath
 CRCHandleStore an IDisposable object in a reference-counted wrapper, in a way that can be shared over FFI