ActionDispatchObserver
public protocol ActionDispatchObserver
The protocol for observers of the ActionDispatcher.
Dispatch observers are called asynchronously on an arbitrary queue.
Note
Because of the user of generics, this cannot be @objc which is required if we want to useObserverSet
because… https://bugs.swift.org/browse/SR-55
-
Undocumented
Declaration
Swift
func actionWillBegin<FeatureType, ActionType>(_ request: ActionRequest<FeatureType, ActionType>) where FeatureType : FeatureDefinition, ActionType : Action
-
Undocumented
Declaration
Swift
func actionDidComplete<FeatureType, ActionType>(_ request: ActionRequest<FeatureType, ActionType>, outcome: ActionPerformOutcome) where FeatureType : FeatureDefinition, ActionType : Action