Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 308 Bytes

11-pipe.md

File metadata and controls

16 lines (13 loc) · 308 Bytes

Pipe

Pipes are pipelines which integrate EventGrammar's , Transformer's and Dataset's together as a single automated workflow.

The Pipe type expects

  • event : .
  • transformer : .
  • dataset : .
Pipe {
  event: EventGrammar;
  transformer: Transformer;
  dataset: DatasetGrammar;
}