MimiRemoteProcessingParameter
public class MimiRemoteProcessingParameter<Value> : MimiProcessingParameter<Value> where Value : Decodable, Value : Encodable, Value : Equatable
A type of MimiProcessingParameter that receives its value from a remote data source.
-
Reload the parameter value from its remote data source and attempt to apply it.
This function will attempt to reload a new parameter value from a remote data source and then apply it on all registered applicators Effectively this will
reload()and thenapply()the value.Declaration
Swift
public func reload() -> AnyPublisher<Value, Error>Return Value
Publisher that wraps the data source reload and value application tasks.
MimiRemoteProcessingParameter Class Reference