mutant-lib 0.6.2

Core library for MutAnt distributed mutable key value storage over Autonomi network
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::network::Network;
use crate::network::client::Config as ClientConfig;
use std::sync::Arc;

pub struct WorkerPoolConfig<Task> {
    pub network: Arc<Network>,
    pub client_config: ClientConfig,
    pub task_processor: Task,
    pub enable_recycling: bool,
    pub total_items_hint: usize,
}