C++ Actor Framework 0.18
Loading...
Searching...
No Matches
Static Public Attributes | List of all members
caf::default_actor_traits< T, true > Struct Template Reference

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<dynamically_typed_actor_base, T>::value
 Denotes whether T is dynamically typed.
 
static constexpr bool is_statically_typed = std::is_base_of<statically_typed_actor_base, T>::value
 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<non_blocking_actor_base, T>::value
 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.
 

Detailed Description

template<class T>
struct caf::default_actor_traits< T, true >

Default implementation of actor_traits for regular actors.

Member Data Documentation

◆ is_blocking

template<class T >
constexpr bool caf::default_actor_traits< T, true >::is_blocking
staticconstexpr
Initial value:
= std::is_base_of<blocking_actor_base, T>::value
|| mixin::is_blocking_requester<T>::value

Denotes whether T is a blocking actor type.

◆ is_incomplete

template<class T >
constexpr bool caf::default_actor_traits< T, true >::is_incomplete
staticconstexpr
Initial value:
static constexpr bool is_statically_typed
Denotes whether T is statically typed.
Definition: actor_traits.hpp:67
static constexpr bool is_non_blocking
Denotes whether T is a non-blocking actor type.
Definition: actor_traits.hpp:76
static constexpr bool is_blocking
Denotes whether T is a blocking actor type.
Definition: actor_traits.hpp:71
static constexpr bool is_dynamically_typed
Denotes whether T is dynamically typed.
Definition: actor_traits.hpp:63

Denotes whether T is an incomplete actor type that misses one or more markers.


The documentation for this struct was generated from the following file: