Initial commit
This commit is contained in:
9
docs/-synchronizer/-status/-d-i-s-c-o-n-n-e-c-t-e-d.md
Normal file
9
docs/-synchronizer/-status/-d-i-s-c-o-n-n-e-c-t-e-d.md
Normal file
@@ -0,0 +1,9 @@
|
||||
[zcash-android-wallet-sdk](../../../index.md) / [cash.z.ecc.android.sdk](../../index.md) / [Synchronizer](../index.md) / [Status](index.md) / [DISCONNECTED](./-d-i-s-c-o-n-n-e-c-t-e-d.md)
|
||||
|
||||
# DISCONNECTED
|
||||
|
||||
`DISCONNECTED`
|
||||
|
||||
Indicates that this Synchronizer is disconnected from its lightwalletd server.
|
||||
When set, a UI element may want to turn red.
|
||||
|
||||
8
docs/-synchronizer/-status/-d-o-w-n-l-o-a-d-i-n-g.md
Normal file
8
docs/-synchronizer/-status/-d-o-w-n-l-o-a-d-i-n-g.md
Normal file
@@ -0,0 +1,8 @@
|
||||
[zcash-android-wallet-sdk](../../../index.md) / [cash.z.ecc.android.sdk](../../index.md) / [Synchronizer](../index.md) / [Status](index.md) / [DOWNLOADING](./-d-o-w-n-l-o-a-d-i-n-g.md)
|
||||
|
||||
# DOWNLOADING
|
||||
|
||||
`DOWNLOADING`
|
||||
|
||||
Indicates that this Synchronizer is actively downloading new blocks from the server.
|
||||
|
||||
9
docs/-synchronizer/-status/-e-n-h-a-n-c-i-n-g.md
Normal file
9
docs/-synchronizer/-status/-e-n-h-a-n-c-i-n-g.md
Normal file
@@ -0,0 +1,9 @@
|
||||
[zcash-android-wallet-sdk](../../../index.md) / [cash.z.ecc.android.sdk](../../index.md) / [Synchronizer](../index.md) / [Status](index.md) / [ENHANCING](./-e-n-h-a-n-c-i-n-g.md)
|
||||
|
||||
# ENHANCING
|
||||
|
||||
`ENHANCING`
|
||||
|
||||
Indicates that this Synchronizer is actively enhancing newly scanned blocks with
|
||||
additional transaction details, fetched from the server.
|
||||
|
||||
9
docs/-synchronizer/-status/-s-c-a-n-n-i-n-g.md
Normal file
9
docs/-synchronizer/-status/-s-c-a-n-n-i-n-g.md
Normal file
@@ -0,0 +1,9 @@
|
||||
[zcash-android-wallet-sdk](../../../index.md) / [cash.z.ecc.android.sdk](../../index.md) / [Synchronizer](../index.md) / [Status](index.md) / [SCANNING](./-s-c-a-n-n-i-n-g.md)
|
||||
|
||||
# SCANNING
|
||||
|
||||
`SCANNING`
|
||||
|
||||
Indicates that this Synchronizer is actively decrypting new blocks that were downloaded
|
||||
from the server.
|
||||
|
||||
8
docs/-synchronizer/-status/-s-t-o-p-p-e-d.md
Normal file
8
docs/-synchronizer/-status/-s-t-o-p-p-e-d.md
Normal file
@@ -0,0 +1,8 @@
|
||||
[zcash-android-wallet-sdk](../../../index.md) / [cash.z.ecc.android.sdk](../../index.md) / [Synchronizer](../index.md) / [Status](index.md) / [STOPPED](./-s-t-o-p-p-e-d.md)
|
||||
|
||||
# STOPPED
|
||||
|
||||
`STOPPED`
|
||||
|
||||
Indicates that [stop](../stop.md) has been called on this Synchronizer and it will no longer be used.
|
||||
|
||||
9
docs/-synchronizer/-status/-s-y-n-c-e-d.md
Normal file
9
docs/-synchronizer/-status/-s-y-n-c-e-d.md
Normal file
@@ -0,0 +1,9 @@
|
||||
[zcash-android-wallet-sdk](../../../index.md) / [cash.z.ecc.android.sdk](../../index.md) / [Synchronizer](../index.md) / [Status](index.md) / [SYNCED](./-s-y-n-c-e-d.md)
|
||||
|
||||
# SYNCED
|
||||
|
||||
`SYNCED`
|
||||
|
||||
Indicates that this Synchronizer is fully up to date and ready for all wallet functions.
|
||||
When set, a UI element may want to turn green. In this state, the balance can be trusted.
|
||||
|
||||
10
docs/-synchronizer/-status/-v-a-l-i-d-a-t-i-n-g.md
Normal file
10
docs/-synchronizer/-status/-v-a-l-i-d-a-t-i-n-g.md
Normal file
@@ -0,0 +1,10 @@
|
||||
[zcash-android-wallet-sdk](../../../index.md) / [cash.z.ecc.android.sdk](../../index.md) / [Synchronizer](../index.md) / [Status](index.md) / [VALIDATING](./-v-a-l-i-d-a-t-i-n-g.md)
|
||||
|
||||
# VALIDATING
|
||||
|
||||
`VALIDATING`
|
||||
|
||||
Indicates that this Synchronizer is actively validating new blocks that were downloaded
|
||||
from the server. Blocks need to be verified before they are scanned. This confirms that
|
||||
each block is chain-sequential, thereby detecting missing blocks and reorgs.
|
||||
|
||||
19
docs/-synchronizer/-status/index.md
Normal file
19
docs/-synchronizer/-status/index.md
Normal file
@@ -0,0 +1,19 @@
|
||||
[zcash-android-wallet-sdk](../../../index.md) / [cash.z.ecc.android.sdk](../../index.md) / [Synchronizer](../index.md) / [Status](./index.md)
|
||||
|
||||
# Status
|
||||
|
||||
`enum class Status`
|
||||
|
||||
Represents the status of this Synchronizer, which is useful for communicating to the user.
|
||||
|
||||
### Enum Values
|
||||
|
||||
| Name | Summary |
|
||||
|---|---|
|
||||
| [STOPPED](-s-t-o-p-p-e-d.md) | Indicates that [stop](../stop.md) has been called on this Synchronizer and it will no longer be used. |
|
||||
| [DISCONNECTED](-d-i-s-c-o-n-n-e-c-t-e-d.md) | Indicates that this Synchronizer is disconnected from its lightwalletd server. When set, a UI element may want to turn red. |
|
||||
| [DOWNLOADING](-d-o-w-n-l-o-a-d-i-n-g.md) | Indicates that this Synchronizer is actively downloading new blocks from the server. |
|
||||
| [VALIDATING](-v-a-l-i-d-a-t-i-n-g.md) | Indicates that this Synchronizer is actively validating new blocks that were downloaded from the server. Blocks need to be verified before they are scanned. This confirms that each block is chain-sequential, thereby detecting missing blocks and reorgs. |
|
||||
| [SCANNING](-s-c-a-n-n-i-n-g.md) | Indicates that this Synchronizer is actively decrypting new blocks that were downloaded from the server. |
|
||||
| [ENHANCING](-e-n-h-a-n-c-i-n-g.md) | Indicates that this Synchronizer is actively enhancing newly scanned blocks with additional transaction details, fetched from the server. |
|
||||
| [SYNCED](-s-y-n-c-e-d.md) | Indicates that this Synchronizer is fully up to date and ready for all wallet functions. When set, a UI element may want to turn green. In this state, the balance can be trusted. |
|
||||
Reference in New Issue
Block a user