C++ Actor Framework 0.19
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_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.
 

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_v<blocking_actor_base, T>
|| mixin::is_blocking_requester_v<T>

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:71
static constexpr bool is_non_blocking
Denotes whether T is a non-blocking actor type.
Definition actor_traits.hpp:79
static constexpr bool is_blocking
Denotes whether T is a blocking actor type.
Definition actor_traits.hpp:74
static constexpr bool is_dynamically_typed
Denotes whether T is dynamically typed.
Definition actor_traits.hpp:67

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: