ParallelInstruction constructor

ParallelInstruction({
  1. FlattenInstruction? flatten,
  2. String? name,
  3. String? originalName,
  4. List<InstructionOutput>? outputs,
  5. ParDoInstruction? parDo,
  6. PartialGroupByKeyInstruction? partialGroupByKey,
  7. ReadInstruction? read,
  8. String? systemName,
  9. WriteInstruction? write,
})

Implementation

ParallelInstruction({
  this.flatten,
  this.name,
  this.originalName,
  this.outputs,
  this.parDo,
  this.partialGroupByKey,
  this.read,
  this.systemName,
  this.write,
});