risingwave_hummock_trace::replay::workerTrait ReplayWorkerScheduler
source pub trait ReplayWorkerScheduler {
// Required methods
fn schedule(&mut self, record: Record);
fn send_result(&mut self, record: Record);
fn wait_finish<'life0, 'async_trait>(
&'life0 mut self,
record: Record,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn shutdown<'async_trait>(
self,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait;
}