12 namespace bnb {
namespace interfaces {
14 enum class realtime_processor_mode : int {
22 sync_when_effect_loaded,
35 async_when_effect_loaded,
42 async_when_bootstrapped,
50 struct hash<::bnb::interfaces::realtime_processor_mode> {
51 size_t operator()(::bnb::interfaces::realtime_processor_mode type)
const {
52 return std::hash<int>()(
static_cast<int>(type));