[−][src]Trait bdk::database::BatchDatabase
Trait for a database that supports batch operations
This trait defines the methods to start and apply a batch of operations.
Associated Types
type Batch: BatchOperations
[src][−]
Container for the operations
Required methods
pub fn begin_batch(&self) -> Self::Batch
[src][−]
Create a new batch container
pub fn commit_batch(&mut self, batch: Self::Batch) -> Result<(), Error>
[src][−]
Consume and apply a batch of operations