Click or drag to resize

IncomingSyncMode Enumeration

IT Hit User File System
Incoming synchronization mode.

Namespace:  ITHit.FileSystem.Synchronization
Assembly:  ITHit.FileSystem (in ITHit.FileSystem.dll) Version: 8.1.26791.0-Beta2
Syntax
public enum IncomingSyncMode
Members
  Member nameValueDescription
SyncId0 Synchronization using on Sync ID algorithm. Your root folder must implement ISynchronizationCollection. During first start the Engine will call the GetChangesAsync(String, Boolean, NullableInt64, CancellationToken) method to get the initial sync token from your remote storage. After that, to sync with remote storage, you will call the ProcessChangesAsync(CancellationToken) method, when remote storage notifies that changes are available.
TimerPooling1 Synchronization using remote storage pooling. The client will periodically pool changes from server by traversing remote storage hierarchy. You will use this mode in case your remote storage does not provide any notifications about changes via web sockets or other technology.
Disabled2 No incoming synchronization will be initiated by the Engine. To get changes from remote storage using pooling you will call the [!:IncomingPoolingSync.ProcessAsync] method when needed.
See Also