oxirs-fuseki 0.2.2

SPARQL 1.1/1.2 HTTP protocol server with Fuseki-compatible configuration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # Store - is_ready_group Methods
//!
//! This module contains method implementations for `Store`.
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)

use super::*;
use std::collections::{HashMap, HashSet};

impl Store {
    /// Check if the store is ready for operations
    pub fn is_ready(&self) -> bool {
        self.default_store.try_read().is_ok()
            && self.datasets.try_read().is_ok()
            && self.metadata.try_read().is_ok()
    }
}