[][src]Struct garage_model_010b::block::BlockManager

pub struct BlockManager {
    pub replication: TableShardedReplication,
    pub data_dir: PathBuf,
    pub data_dir_lock: Mutex<()>,
    pub rc: Tree,
    pub resync_queue: Tree,
    pub resync_notify: Notify,
    pub system: Arc<System>,
    pub garage: ArcSwapOption<Garage>,
    // some fields omitted
}

Fields

replication: TableShardedReplicationdata_dir: PathBufdata_dir_lock: Mutex<()>rc: Treeresync_queue: Treeresync_notify: Notifysystem: Arc<System>garage: ArcSwapOption<Garage>

Implementations

impl BlockManager[src]

pub fn new(
    db: &Db,
    data_dir: PathBuf,
    replication: TableShardedReplication,
    system: Arc<System>,
    rpc_server: &mut RpcServer
) -> Arc<Self>
[src]

pub async fn spawn_background_worker(self: Arc<Self>)[src]

pub async fn write_block(
    &self,
    hash: &Hash,
    data: &[u8]
) -> Result<Message, Error>
[src]

pub async fn read_block(&self, hash: &Hash) -> Result<Message, Error>[src]

pub async fn need_block(&self, hash: &Hash) -> Result<bool, Error>[src]

pub fn block_incref(&self, hash: &Hash) -> Result<(), Error>[src]

pub fn block_decref(&self, hash: &Hash) -> Result<(), Error>[src]

pub async fn rpc_get_block(&self, hash: &Hash) -> Result<Vec<u8>, Error>[src]

pub async fn rpc_put_block(
    &self,
    hash: Hash,
    data: Vec<u8>
) -> Result<(), Error>
[src]

pub async fn repair_data_store(
    &self,
    must_exit: &Receiver<bool>
) -> Result<(), Error>
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,