12 namespace bnb {
namespace interfaces {
14 enum class consistency_mode : int {
17 synchronous_when_effect_loaded,
18 asynchronous_inconsistent,
19 asynchronous_consistent,
21 asynchronous_consistent_when_effect_loaded,
29 struct hash<::bnb::interfaces::consistency_mode> {
30 size_t operator()(::bnb::interfaces::consistency_mode type)
const {
31 return std::hash<int>()(
static_cast<int>(type));