MCPcopy Create free account
hub / github.com/SeaQL/FireDBG.for.Rust / Processor

Interface Processor

indexer/src/processor.rs:6–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4
5#[async_trait]
6pub trait Processor {
7 async fn batch(&mut self, messages: impl Iterator<Item = SharedMessage> + Send) -> Result<()>;
8
9 async fn end(&mut self) -> Result<()>;
10
11 fn finish(self) -> Result<()>;
12}

Callers

nothing calls this directly

Implementers 2

main.rsindexer/src/main.rs
validator.rsindexer/src/validator.rs

Calls

no outgoing calls

Tested by

no test coverage detected