MimiProcessingParameterUpdateState

public enum MimiProcessingParameterUpdateState<Value> where Value : Equatable, Value : Sendable

Enumeration representing the update state of a MimiProcessingParameter.

  • Indicates that the value application has been successfully applied.

    Declaration

    Swift

    case applied
  • Represents the state when the value is being retrieved from the data source.

    Declaration

    Swift

    case loading
  • The value application is currently being applied to the applicator.

    Declaration

    Swift

    case applying(value: Value)
  • Represents the state when applying the value application has failed, with an associated value and error.

    Declaration

    Swift

    case failed(value: Value, error: Error)