Data Input
Input type passed to components
Overview
AnyCloneableDataSwift Structure
public struct DataInput: CloneableDataInput {
public var componentDynamicID: String
public var inputDynamicID: String
public var inputStaticID: String
public var data: AnyCloneableData // Type erased container holding the actual data
// information about the input
public var batch: Int? // which group of inputs in the workflow was this, incrementing int
public var creationTime: Date
public var currentBatch: Bool // If this is the most recent batch of inputs, or an old batch
}Tips
Use currentBatch for advanced processing
Last updated

