C++ Actor Framework 1.0.0
|
Default implementation of actor_traits
for regular actors.
More...
#include <actor_traits.hpp>
Static Public Attributes | |
static constexpr bool | is_dynamically_typed = std::is_base_of_v<dynamically_typed_actor_base, T> |
Denotes whether T is dynamically typed. | |
static constexpr bool | is_statically_typed = std::is_base_of_v<statically_typed_actor_base, T> |
Denotes whether T is statically typed. | |
static constexpr bool | is_blocking |
Denotes whether T is a blocking actor type. | |
static constexpr bool | is_non_blocking = std::is_base_of_v<non_blocking_actor_base, T> |
Denotes whether T is a non-blocking actor type. | |
static constexpr bool | is_incomplete |
Denotes whether T is an incomplete actor type that misses one or more markers. | |
Default implementation of actor_traits
for regular actors.
|
staticconstexpr |
Denotes whether T
is a blocking actor type.
|
staticconstexpr |
Denotes whether T
is an incomplete actor type that misses one or more markers.