pass

Configuration

Input Ports

Port name

Data Type

Flags

Description

pass

_flow_dependent/pass

_required

The datum to pass.

Output Ports

Port name

Data Type

Flags

Description

pass

_flow_dependent/pass

_required

The passed datum.

Pipefile Usage

The following sections describe the blocks needed to use this process in a pipe file.

Pipefile block

# ================================================================
process <this-proc>
  :: pass
# ================================================================

Process connections

The following Input ports will need to be set

# This process will consume the following input ports
connect from <this-proc>.pass
         to   <upstream-proc>.pass

The following Output ports will need to be set

# This process will produce the following output ports
connect from <this-proc>.pass
         to   <downstream-proc>.pass

Class Description

class pass_process : public sprokit::process

A process to pass through a data stream.

\process Passes through incoming data.

\iports

\iport{pass} The datum to pass.

\oports

\oport{pass} The passed datum.

\reqs

\req The \port{pass} ports must be connected.

class priv