Difference between revisions of "What are pipelines?"

From CCIL
Jump to: navigation, search
(Created page with "Pipelines organize stages in complex (usually) constructs which allows the ''CCIL'' systems to achieve real value. A very simple example example can be f...")
 
Line 11: Line 11:
 
$ ccil-app default echo
 
$ ccil-app default echo
 
</pre>
 
</pre>
 +
 +
=== The runtime context ===
 +
 +
More complex pipelines require that parameters are passed across stages during their execution.
 +
 +
TBA

Revision as of 11:52, 26 May 2017

Pipelines organize stages in complex (usually) constructs which allows the CCIL systems to achieve real value.

A very simple example example can be found in the Hello World! tutorial:

# echo the simple message
context.echo.pipeline = ECHO 

In the example above, the pipeline is named echo, and given that the context is named default can be executed from the command line, using the following syntax:

$ ccil-app default echo

The runtime context

More complex pipelines require that parameters are passed across stages during their execution.

TBA