ProcessPiping
Extension methods for unbound processes enabling the creation of process groups
Attributes
- Graph
-
- Supertypes
-
class Objecttrait Matchableclass Any
Members list
Value members
Concrete methods
Attaches the output of this process to an other process' input
Attaches the output of this process to an other process' input
Use the | or the via methods instead for more readability.
Value parameters
- channel
-
Pipe between the two processes
- other
-
The other process
Attributes
- Returns
-
Returns a ProcessGroup
Attaches the output of this process to an other process' input with a custom channel
Attaches the output of this process to an other process' input with a custom channel
There is a syntax helper step to allow the following syntax:
val processGroup = process1.via(channel).to(process2)
Value parameters
- channel
-
Pipe between the two processes
Attributes
- Returns
-
Returns a syntax helper trait that has a PipeBuilderSyntax.to method to finish the construction
Attaches the output of this process to an other process' input
Attaches the output of this process to an other process' input
Value parameters
- other
-
The other process
Attributes
- Returns
-
Returns a ProcessGroup