mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
36 lines
710 B
C++
36 lines
710 B
C++
#pragma once
|
|
|
|
#include <Processors/IProcessor.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Has one input and arbitrary non zero number of outputs.
|
|
* All of them have the same structure.
|
|
*
|
|
* Pulls data input and copies it to every output.
|
|
* You may have heard about it under the name 'tee'.
|
|
*
|
|
* Doesn't do any heavy calculations.
|
|
* Preserves an order of data.
|
|
*/
|
|
class ForkProcessor : public IProcessor
|
|
{
|
|
public:
|
|
ForkProcessor(const Block & header, size_t num_outputs)
|
|
: IProcessor(InputPorts{header}, OutputPorts(num_outputs, header))
|
|
{
|
|
}
|
|
|
|
String getName() const override { return "Fork"; }
|
|
|
|
Status prepare() override;
|
|
|
|
InputPort & getInputPort() { return inputs.front(); }
|
|
};
|
|
|
|
}
|
|
|
|
|