sink

Configuration

Input Ports

Port name

Data Type

Flags

Description

sink

_any

_required

The data to ignore.

Output Ports

Pipefile Usage

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

Pipefile block

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

Process connections

The following Input ports will need to be set

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

The following Output ports will need to be set

# This process will produce the following output ports

Class Description

class sink_process : public sprokit::process

A process for doing nothing with a data stream.

\process Ignores incoming data.

\iports

\iport{sink} The data to ignore.

\reqs

\req The \port{sink} port must be connected.

class priv