Flags
public struct Flags : OptionSet
Flags to pass to the various subscribe
calls on Box
and Query
.
-
Immediately send the current value so the receiver is initialized with current state?
Declaration
Swift
public static let sendInitial: Observer.Flags
-
Don’t subscribe. Usually this is used in combination with
.sendInitial
to seed a not-live-updating snapshot (e.g. when printing).Declaration
Swift
public static let dontSubscribe: Observer.Flags