Trait mz_compute::render::sinks::SinkRender
source · pub(crate) trait SinkRender<G>{
// Required method
fn render_sink(
&self,
compute_state: &mut ComputeState,
sink: &ComputeSinkDesc<CollectionMetadata>,
sink_id: GlobalId,
as_of: Antichain<Timestamp>,
start_signal: StartSignal,
sinked_collection: Collection<G, Row, Diff>,
err_collection: Collection<G, DataflowError, Diff>,
ct_times: Option<Collection<G, (), Diff>>,
) -> Option<Rc<dyn Any>>;
}
Expand description
A type that can be rendered as a dataflow sink.