Summary: - Sources: Audit, Configuration, Migrations, Models, Protocols (+2 more) Stats: - 37 files changed, 256 insertions(+), 22 deletions(-)
12 lines
331 B
Swift
12 lines
331 B
Swift
import Foundation
|
|
|
|
/// Defines how a key participates in WatchConnectivity sync.
|
|
public enum SyncPolicy: Sendable {
|
|
/// No sync behavior.
|
|
case never
|
|
/// Sync only when the app explicitly requests it.
|
|
case manual
|
|
/// Automatically sync when data size is below the configured threshold.
|
|
case automaticSmall
|
|
}
|