8 #include <rapidsmpf/streaming/core/actor.hpp>
9 #include <rapidsmpf/streaming/core/channel.hpp>
10 #include <rapidsmpf/streaming/core/context.hpp>
61 std::shared_ptr<Context> ctx,
62 std::shared_ptr<Channel> ch_in,
63 std::vector<std::shared_ptr<Channel>> chs_out,
Actor fanout(std::shared_ptr< Context > ctx, std::shared_ptr< Channel > ch_in, std::vector< std::shared_ptr< Channel >> chs_out, FanoutPolicy policy)
Broadcast messages from one input channel to multiple output channels.
FanoutPolicy
Fanout policy controlling how messages are propagated.
@ UNBOUNDED
Forward messages without enforcing backpressure.
@ BOUNDED
Process messages as they arrive and immediately forward them.
coro::task< void > Actor
Alias for an actor in a streaming graph.