TransformationScope
public enum TransformationScope : RawRepresentable, Codable, Equatable
Defines the scope where a transformation should be applied.
-
Declaration
Swift
public typealias RawValue = String -
Apply transformation after data collection.
Declaration
Swift
case afterCollectors -
Apply transformation to all dispatchers.
Declaration
Swift
case allDispatchers -
Apply transformation to the dispatcher with the given ID.
Declaration
Swift
case dispatcher(id: String) -
Declaration
Swift
public var rawValue: String { get } -
Declaration
Swift
public init(rawValue: String)
View on GitHub