Difference between revisions of "RunPipelineStage"
From CCIL
(→Parameters) |
(→Context) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 9: | Line 9: | ||
|- | |- | ||
| '''recommended name''' | | '''recommended name''' | ||
− | run | + | | run |
|- | |- | ||
| '''class''' | | '''class''' | ||
Line 47: | Line 47: | ||
<pre> | <pre> | ||
− | + | RUN_INSERT = run | |
+ | RUN_INSERT.name = insert | ||
</pre> | </pre> | ||
Line 53: | Line 54: | ||
<pre> | <pre> | ||
− | + | context.insert.pipeline = PYT_LOGIN,PYT_INHERIT,PYT_INSERT,PYT_LOGOUT | |
+ | context.feed.pipeline = ASSIGN_TAG,CORPORA_ENUM,RUN_INSERT | ||
+ | |||
+ | RUN_INSERT = run | ||
+ | RUN_INSERT.name = insert | ||
</pre> | </pre> | ||
== See Also == | == See Also == |
Latest revision as of 07:32, 6 March 2020
Runs a pipeline within the same Runtime environment.
Overview
jar | ccil-api |
recommended name | run |
class | net.ccil.stages.generic.RunPipelineStage |
location | /ccil-api/src/main/java/net/ccil/stages/generic/RunPipelineStage.java |
svn | svn://svn.code.sf.net/p/ccil/code/trunk/src/api/src/main/java/net/ccil/stages/generic/RunPipelineStage.java |
Parameters
Name | Type | Description | Comment |
---|---|---|---|
name | java.lang.String | The name of the pipeline. | You can put multiple pipelines to be executed as a comma-separated list. |
Registration
service:run rdf:type entity:service ; entity:implementation "net.ccil.stages.generic.RunPipelineStage" ; entity:classpath "" ; entity:arguments "" .
Context
RUN_INSERT = run RUN_INSERT.name = insert
Example
context.insert.pipeline = PYT_LOGIN,PYT_INHERIT,PYT_INSERT,PYT_LOGOUT context.feed.pipeline = ASSIGN_TAG,CORPORA_ENUM,RUN_INSERT RUN_INSERT = run RUN_INSERT.name = insert