Struct SyncProgress
A struct containing information about the progress state at a given instant.
Inherited Members
Namespace: Realms.Sync
Assembly: Realm.Sync.dll
Syntax
public struct SyncProgress
Properties
| Improve this Doc View SourceTransferableBytes
Gets the total number of bytes that have to be transferred since subscribing for progress notifications. The difference between that number and TransferredBytes gives you the number of bytes not yet transferred. If the difference is 0, then all changes at the instant the callback fires have been successfully transferred.
Declaration
public ulong TransferableBytes { get; }
Property Value
Type | Description |
---|---|
UInt64 | The number of transferable bytes. |
TransferredBytes
Gets the number of bytes that have been transferred since subscribing for progress notifications.
Declaration
public ulong TransferredBytes { get; }
Property Value
Type | Description |
---|---|
UInt64 | The number of transferred bytes. |