rotor
Event loop friendly C++ actor micro-framework
 
Loading...
Searching...
No Matches
state.h
1#pragma once
2
3//
4// Copyright (c) 2019-2020 Ivan Baidakou (basiliscos) (the dot dmol at gmail dot com)
5//
6// Distributed under the MIT Software License
7//
8
9namespace rotor {
10
12enum class state_t {
13 UNKNOWN,
14 NEW,
15 INITIALIZING,
16 INITIALIZED,
17 OPERATIONAL,
18 SHUTTING_DOWN,
19 SHUT_DOWN,
20};
21
22} // namespace rotor
Basic namespace for all rotor functionalities.
Definition rotor.hpp:21
state_t
state of actor in rotor
Definition state.h:12