File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,11 @@ class trim_operator final : public crtp_operator<trim_operator> {
20
20
: field_{std::move (field)} {
21
21
}
22
22
23
- // This function contains the logic of the trim operator when
24
- // instantiated. It maps from a generator :53
25
- // of table slices to a generator of
26
- // table slices. A table slice is simply a batch of events.
23
+ // This function contains the logic of the trim operator when instantiated.
24
+ // It maps from a generator of table slices to a generator of table slices. A
25
+ // table slice is simply a batch of events. The operator control plane is an
26
+ // escape hatch from the operator, utilized for emitting diagnostics or
27
+ // running asynchronous code outside of the operator's generator.
27
28
auto operator ()(generator<table_slice> input,
28
29
operator_control_plane& ctrl) const
29
30
-> generator<table_slice> {
You can’t perform that action at this time.
0 commit comments