caf/0.19.4

An open source implementation of the Actor Model in C++
Recipe info
2023-10-03

Available packages
Linux
Windows
macOS
macOS Apple Silicon

Install
Add the following line to your conanfile.txt:
[requires]
caf/0.19.4

Using caf

Note

If you are a new Conan user, we recommend reading the how to consume packages tutorial.

If you need additional assistance, please ask a question in the Conan Center Index repository.

Simplest use case consuming this recipe and assuming CMake as your local build tool:

[requires]
caf/0.19.4
[generators]
CMakeDeps
CMakeToolchain
[layout]
cmake_layout
from conan import ConanFile
from conan.tools.cmake import cmake_layout


class ExampleRecipe(ConanFile):
    settings = "os", "compiler", "build_type", "arch"
    generators = "CMakeDeps", "CMakeToolchain"

    def requirements(self):
        self.requires("caf/0.19.4")

    def layout(self):
        cmake_layout(self)

Now, you can run this Conan command to locally install (and build if necessary) this recipe and its dependencies (if any):

$ conan install conanfile.txt --build=missing

Useful information to take into account to consume this library:


These are the main declared targets:

  • CMake package name(s): CAF
  • CMake target name(s): caf::caf
  • caf_io => CAF::io
    caf_core => CAF::core
    caf_openssl => CAF::openssl
    
  • pkg-config file name(s): caf.pc
  • caf_io => caf-caf_io.pc
    caf_core => caf-caf_core.pc
    caf_openssl => caf-caf_openssl.pc
    

A simple use case using the CMake file name and the global target:

# ...
find_package(CAF REQUIRED)
# ...
target_link_libraries(YOUR_TARGET caf::caf)

These are all the available headers. Some of these ones might be non-public; make sure of it by visiting the caf homepage listed above:

#include "caf/abstract_actor.hpp"
#include "caf/abstract_channel.hpp"
#include "caf/abstract_group.hpp"
#include "caf/abstract_mailbox.hpp"
#include "caf/action.hpp"
#include "caf/actor.hpp"
#include "caf/actor_addr.hpp"
#include "caf/actor_cast.hpp"
#include "caf/actor_clock.hpp"
#include "caf/actor_companion.hpp"
#include "caf/actor_config.hpp"
#include "caf/actor_control_block.hpp"
#include "caf/actor_factory.hpp"
#include "caf/actor_ostream.hpp"
#include "caf/actor_pool.hpp"
#include "caf/actor_profiler.hpp"
#include "caf/actor_proxy.hpp"
#include "caf/actor_registry.hpp"
#include "caf/actor_storage.hpp"
#include "caf/actor_system.hpp"
#include "caf/actor_system_config.hpp"
#include "caf/actor_traits.hpp"
#include "caf/after.hpp"
#include "caf/all.hpp"
#include "caf/allowed_unsafe_message_type.hpp"
#include "caf/async/batch.hpp"
#include "caf/async/blocking_consumer.hpp"
#include "caf/async/blocking_producer.hpp"
#include "caf/async/consumer.hpp"
#include "caf/async/consumer_adapter.hpp"
#include "caf/async/execution_context.hpp"
#include "caf/async/future.hpp"
#include "caf/async/fwd.hpp"
#include "caf/async/policy.hpp"
#include "caf/async/producer.hpp"
#include "caf/async/producer_adapter.hpp"
#include "caf/async/promise.hpp"
#include "caf/async/publisher.hpp"
#include "caf/async/read_result.hpp"
#include "caf/async/spsc_buffer.hpp"
#include "caf/async/write_result.hpp"
#include "caf/attachable.hpp"
#include "caf/behavior.hpp"
#include "caf/behavior_policy.hpp"
#include "caf/binary_deserializer.hpp"
#include "caf/binary_serializer.hpp"
#include "caf/blocking_actor.hpp"
#include "caf/byte.hpp"
#include "caf/byte_address.hpp"
#include "caf/byte_buffer.hpp"
#include "caf/byte_span.hpp"
#include "caf/caf_main.hpp"
#include "caf/callback.hpp"
#include "caf/catch_all.hpp"
#include "caf/check_typed_input.hpp"
#include "caf/chrono.hpp"
#include "caf/composed_type.hpp"
#include "caf/config.hpp"
#include "caf/config_option.hpp"
#include "caf/config_option_adder.hpp"
#include "caf/config_option_set.hpp"
#include "caf/config_value.hpp"
#include "caf/config_value_reader.hpp"
#include "caf/config_value_writer.hpp"
#include "caf/const_typed_message_view.hpp"
#include "caf/cow_string.hpp"
#include "caf/cow_tuple.hpp"
#include "caf/cow_vector.hpp"
#include "caf/decorator/sequencer.hpp"
#include "caf/deduce_mpi.hpp"
#include "caf/deep_to_string.hpp"
#include "caf/default_attachable.hpp"
#include "caf/default_enum_inspect.hpp"
#include "caf/defaults.hpp"
#include "caf/delegated.hpp"
#include "caf/deserializer.hpp"
#include "caf/detail/abstract_worker.hpp"
#include "caf/detail/abstract_worker_hub.hpp"
#include "caf/detail/accept_handler.hpp"
#include "caf/detail/actor_local_printer.hpp"
#include "caf/detail/algorithms.hpp"
#include "caf/detail/append_hex.hpp"
#include "caf/detail/apply_args.hpp"
#include "caf/detail/arg_wrapper.hpp"
#include "caf/detail/as_mutable_ref.hpp"
#include "caf/detail/async_cell.hpp"
#include "caf/detail/atomic_ref_counted.hpp"
#include "caf/detail/base64.hpp"
#include "caf/detail/behavior_impl.hpp"
#include "caf/detail/behavior_stack.hpp"
#include "caf/detail/blocking_behavior.hpp"
#include "caf/detail/bounds_checker.hpp"
#include "caf/detail/build_config.hpp"
#include "caf/detail/call_cfun.hpp"
#include "caf/detail/cas_weak.hpp"
#include "caf/detail/comparable.hpp"
#include "caf/detail/config_consumer.hpp"
#include "caf/detail/connection_factory.hpp"
#include "caf/detail/consumer.hpp"
#include "caf/detail/convert_ip_endpoint.hpp"
#include "caf/detail/core_export.hpp"
#include "caf/detail/default_invoke_result_visitor.hpp"
#include "caf/detail/default_mailbox.hpp"
#include "caf/detail/dispose_on_call.hpp"
#include "caf/detail/double_ended_queue.hpp"
#include "caf/detail/flow_bridge_base.hpp"
#include "caf/detail/format.hpp"
#include "caf/detail/functor_attachable.hpp"
#include "caf/detail/get_process_id.hpp"
#include "caf/detail/glob_match.hpp"
#include "caf/detail/group_tunnel.hpp"
#include "caf/detail/ieee_754.hpp"
#include "caf/detail/implicit_conversions.hpp"
#include "caf/detail/infer_actor_shell_ptr_type.hpp"
#include "caf/detail/init_fun_factory.hpp"
#include "caf/detail/int_list.hpp"
#include "caf/detail/invoke_result_visitor.hpp"
#include "caf/detail/io_export.hpp"
#include "caf/detail/is_complete.hpp"
#include "caf/detail/is_one_of.hpp"
#include "caf/detail/json.hpp"
#include "caf/detail/latch.hpp"
#include "caf/detail/local_group_module.hpp"
#include "caf/detail/log_level.hpp"
#include "caf/detail/lp_flow_bridge.hpp"
#include "caf/detail/mailbox_factory.hpp"
#include "caf/detail/make_meta_object.hpp"
#include "caf/detail/mask_bits.hpp"
#include "caf/detail/message_builder_element.hpp"
#include "caf/detail/message_data.hpp"
#include "caf/detail/message_flow_bridge.hpp"
#include "caf/detail/meta_object.hpp"
#include "caf/detail/monotonic_buffer_resource.hpp"
#include "caf/detail/mtl_util.hpp"
#include "caf/detail/net_export.hpp"
#include "caf/detail/net_syscall.hpp"
#include "caf/detail/network_order.hpp"
#include "caf/detail/offset_at.hpp"
#include "caf/detail/openssl_export.hpp"
#include "caf/detail/overload.hpp"
#include "caf/detail/padded_size.hpp"
#include "caf/detail/parse.hpp"
#include "caf/detail/parser/add_ascii.hpp"
#include "caf/detail/parser/ascii_to_int.hpp"
#include "caf/detail/parser/chars.hpp"
#include "caf/detail/parser/fsm.hpp"
#include "caf/detail/parser/fsm_undef.hpp"
#include "caf/detail/parser/is_char.hpp"
#include "caf/detail/parser/is_digit.hpp"
#include "caf/detail/parser/read_bool.hpp"
#include "caf/detail/parser/read_config.hpp"
#include "caf/detail/parser/read_floating_point.hpp"
#include "caf/detail/parser/read_ipv4_address.hpp"
#include "caf/detail/parser/read_ipv6_address.hpp"
#include "caf/detail/parser/read_number.hpp"
#include "caf/detail/parser/read_number_or_timespan.hpp"
#include "caf/detail/parser/read_signed_integer.hpp"
#include "caf/detail/parser/read_string.hpp"
#include "caf/detail/parser/read_timespan.hpp"
#include "caf/detail/parser/read_timestamp.hpp"
#include "caf/detail/parser/read_unsigned_integer.hpp"
#include "caf/detail/parser/read_uri.hpp"
#include "caf/detail/parser/sub_ascii.hpp"
#include "caf/detail/plain_ref_counted.hpp"
#include "caf/detail/pp.hpp"
#include "caf/detail/pretty_type_name.hpp"
#include "caf/detail/print.hpp"
#include "caf/detail/private_thread.hpp"
#include "caf/detail/private_thread_pool.hpp"
#include "caf/detail/profiled_send.hpp"
#include "caf/detail/prometheus_broker.hpp"
#include "caf/detail/remote_group_module.hpp"
#include "caf/detail/rfc3629.hpp"
#include "caf/detail/rfc6455.hpp"
#include "caf/detail/ring_buffer.hpp"
#include "caf/detail/scope_guard.hpp"
#include "caf/detail/select_all.hpp"
#include "caf/detail/set_thread_name.hpp"
#include "caf/detail/sockaddr_members.hpp"
#include "caf/detail/socket_guard.hpp"
#include "caf/detail/socket_sys_aliases.hpp"
#include "caf/detail/socket_sys_includes.hpp"
#include "caf/detail/source_location.hpp"
#include "caf/detail/spawn_fwd.hpp"
#include "caf/detail/spawnable.hpp"
#include "caf/detail/split_join.hpp"
#include "caf/detail/squashed_int.hpp"
#include "caf/detail/stream_bridge.hpp"
#include "caf/detail/stringification_inspector.hpp"
#include "caf/detail/sync_request_bouncer.hpp"
#include "caf/detail/sync_ring_buffer.hpp"
#include "caf/detail/tbind.hpp"
#include "caf/detail/test_actor_clock.hpp"
#include "caf/detail/test_export.hpp"
#include "caf/detail/thread_safe_actor_clock.hpp"
#include "caf/detail/type_id_list_builder.hpp"
#include "caf/detail/type_list.hpp"
#include "caf/detail/type_traits.hpp"
#include "caf/detail/typed_actor_util.hpp"
#include "caf/detail/unique_function.hpp"
#include "caf/detail/worker_hub.hpp"
#include "caf/detail/ws_flow_bridge.hpp"
#include "caf/dictionary.hpp"
#include "caf/disposable.hpp"
#include "caf/error.hpp"
#include "caf/error_code.hpp"
#include "caf/event_based_actor.hpp"
#include "caf/exec_main.hpp"
#include "caf/execution_unit.hpp"
#include "caf/exit_reason.hpp"
#include "caf/expected.hpp"
#include "caf/extend.hpp"
#include "caf/flow/coordinated.hpp"
#include "caf/flow/coordinator.hpp"
#include "caf/flow/fwd.hpp"
#include "caf/flow/gen/empty.hpp"
#include "caf/flow/gen/from_callable.hpp"
#include "caf/flow/gen/from_container.hpp"
#include "caf/flow/gen/iota.hpp"
#include "caf/flow/gen/just.hpp"
#include "caf/flow/gen/repeat.hpp"
#include "caf/flow/item_publisher.hpp"
#include "caf/flow/multicaster.hpp"
#include "caf/flow/observable.hpp"
#include "caf/flow/observable_builder.hpp"
#include "caf/flow/observable_decl.hpp"
#include "caf/flow/observer.hpp"
#include "caf/flow/op/base.hpp"
#include "caf/flow/op/buffer.hpp"
#include "caf/flow/op/cell.hpp"
#include "caf/flow/op/cold.hpp"
#include "caf/flow/op/concat.hpp"
#include "caf/flow/op/defer.hpp"
#include "caf/flow/op/empty.hpp"
#include "caf/flow/op/fail.hpp"
#include "caf/flow/op/from_generator.hpp"
#include "caf/flow/op/from_resource.hpp"
#include "caf/flow/op/from_steps.hpp"
#include "caf/flow/op/hot.hpp"
#include "caf/flow/op/interval.hpp"
#include "caf/flow/op/mcast.hpp"
#include "caf/flow/op/merge.hpp"
#include "caf/flow/op/never.hpp"
#include "caf/flow/op/prefix_and_tail.hpp"
#include "caf/flow/op/publish.hpp"
#include "caf/flow/op/state.hpp"
#include "caf/flow/op/ucast.hpp"
#include "caf/flow/op/zip_with.hpp"
#include "caf/flow/scoped_coordinator.hpp"
#include "caf/flow/single.hpp"
#include "caf/flow/step/all.hpp"
#include "caf/flow/step/distinct.hpp"
#include "caf/flow/step/do_finally.hpp"
#include "caf/flow/step/do_on_complete.hpp"
#include "caf/flow/step/do_on_error.hpp"
#include "caf/flow/step/do_on_next.hpp"
#include "caf/flow/step/element_at.hpp"
#include "caf/flow/step/filter.hpp"
#include "caf/flow/step/fwd.hpp"
#include "caf/flow/step/ignore_elements.hpp"
#include "caf/flow/step/map.hpp"
#include "caf/flow/step/on_error_complete.hpp"
#include "caf/flow/step/reduce.hpp"
#include "caf/flow/step/skip.hpp"
#include "caf/flow/step/skip_last.hpp"
#include "caf/flow/step/take.hpp"
#include "caf/flow/step/take_last.hpp"
#include "caf/flow/step/take_while.hpp"
#include "caf/flow/subscription.hpp"
#include "caf/forwarding_actor_proxy.hpp"
#include "caf/function_view.hpp"
#include "caf/fwd.hpp"
#include "caf/group.hpp"
#include "caf/group_manager.hpp"
#include "caf/group_module.hpp"
#include "caf/hash/fnv.hpp"
#include "caf/hash/sha1.hpp"
#include "caf/illegal_message_element.hpp"
#include "caf/infer_handle.hpp"
#include "caf/init_global_meta_objects.hpp"
#include "caf/input_range.hpp"
#include "caf/inspector_access.hpp"
#include "caf/inspector_access_base.hpp"
#include "caf/inspector_access_type.hpp"
#include "caf/interface_mismatch.hpp"
#include "caf/intrusive/forward_iterator.hpp"
#include "caf/intrusive/inbox_result.hpp"
#include "caf/intrusive/lifo_inbox.hpp"
#include "caf/intrusive/linked_list.hpp"
#include "caf/intrusive/singly_linked.hpp"
#include "caf/intrusive/stack.hpp"
#include "caf/intrusive_cow_ptr.hpp"
#include "caf/intrusive_ptr.hpp"
#include "caf/invoke_message_result.hpp"
#include "caf/io/abstract_broker.hpp"
#include "caf/io/accept_handle.hpp"
#include "caf/io/all.hpp"
#include "caf/io/basp/all.hpp"
#include "caf/io/basp/connection_state.hpp"
#include "caf/io/basp/endpoint_context.hpp"
#include "caf/io/basp/fwd.hpp"
#include "caf/io/basp/header.hpp"
#include "caf/io/basp/instance.hpp"
#include "caf/io/basp/message_queue.hpp"
#include "caf/io/basp/message_type.hpp"
#include "caf/io/basp/remote_message_handler.hpp"
#include "caf/io/basp/routing_table.hpp"
#include "caf/io/basp/version.hpp"
#include "caf/io/basp/worker.hpp"
#include "caf/io/basp_broker.hpp"
#include "caf/io/broker.hpp"
#include "caf/io/broker_servant.hpp"
#include "caf/io/close.hpp"
#include "caf/io/connect.hpp"
#include "caf/io/connection_handle.hpp"
#include "caf/io/connection_helper.hpp"
#include "caf/io/datagram_handle.hpp"
#include "caf/io/datagram_servant.hpp"
#include "caf/io/doorman.hpp"
#include "caf/io/fwd.hpp"
#include "caf/io/handle.hpp"
#include "caf/io/middleman.hpp"
#include "caf/io/middleman_actor.hpp"
#include "caf/io/middleman_actor_impl.hpp"
#include "caf/io/network/acceptor.hpp"
#include "caf/io/network/acceptor_impl.hpp"
#include "caf/io/network/acceptor_manager.hpp"
#include "caf/io/network/datagram_handler.hpp"
#include "caf/io/network/datagram_handler_impl.hpp"
#include "caf/io/network/datagram_manager.hpp"
#include "caf/io/network/datagram_servant_impl.hpp"
#include "caf/io/network/default_multiplexer.hpp"
#include "caf/io/network/doorman_impl.hpp"
#include "caf/io/network/event_handler.hpp"
#include "caf/io/network/interfaces.hpp"
#include "caf/io/network/ip_endpoint.hpp"
#include "caf/io/network/manager.hpp"
#include "caf/io/network/multiplexer.hpp"
#include "caf/io/network/native_socket.hpp"
#include "caf/io/network/operation.hpp"
#include "caf/io/network/pipe_reader.hpp"
#include "caf/io/network/protocol.hpp"
#include "caf/io/network/receive_buffer.hpp"
#include "caf/io/network/rw_state.hpp"
#include "caf/io/network/scribe_impl.hpp"
#include "caf/io/network/stream.hpp"
#include "caf/io/network/stream_impl.hpp"
#include "caf/io/network/stream_manager.hpp"
#include "caf/io/network/test_multiplexer.hpp"
#include "caf/io/open.hpp"
#include "caf/io/publish.hpp"
#include "caf/io/receive_policy.hpp"
#include "caf/io/remote_actor.hpp"
#include "caf/io/remote_group.hpp"
#include "caf/io/scribe.hpp"
#include "caf/io/system_messages.hpp"
#include "caf/io/typed_broker.hpp"
#include "caf/io/unpublish.hpp"
#include "caf/ip_address.hpp"
#include "caf/ip_endpoint.hpp"
#include "caf/ip_subnet.hpp"
#include "caf/ipv4_address.hpp"
#include "caf/ipv4_endpoint.hpp"
#include "caf/ipv4_subnet.hpp"
#include "caf/ipv6_address.hpp"
#include "caf/ipv6_endpoint.hpp"
#include "caf/ipv6_subnet.hpp"
#include "caf/is_actor_handle.hpp"
#include "caf/is_error_code_enum.hpp"
#include "caf/is_timeout_or_catch_all.hpp"
#include "caf/is_typed_actor.hpp"
#include "caf/json.hpp"
#include "caf/json_array.hpp"
#include "caf/json_builder.hpp"
#include "caf/json_object.hpp"
#include "caf/json_reader.hpp"
#include "caf/json_value.hpp"
#include "caf/json_writer.hpp"
#include "caf/load_inspector.hpp"
#include "caf/load_inspector_base.hpp"
#include "caf/local_actor.hpp"
#include "caf/logger.hpp"
#include "caf/mailbox_element.hpp"
#include "caf/make_actor.hpp"
#include "caf/make_config_option.hpp"
#include "caf/make_copy_on_write.hpp"
#include "caf/make_counted.hpp"
#include "caf/make_message.hpp"
#include "caf/may_have_timeout.hpp"
#include "caf/message.hpp"
#include "caf/message_builder.hpp"
#include "caf/message_handler.hpp"
#include "caf/message_id.hpp"
#include "caf/message_priority.hpp"
#include "caf/mixin/actor_widget.hpp"
#include "caf/mixin/behavior_changer.hpp"
#include "caf/mixin/requester.hpp"
#include "caf/mixin/sender.hpp"
#include "caf/mixin/subscriber.hpp"
#include "caf/monitorable_actor.hpp"
#include "caf/mtl.hpp"
#include "caf/net/abstract_actor_shell.hpp"
#include "caf/net/actor_shell.hpp"
#include "caf/net/checked_socket.hpp"
#include "caf/net/datagram_socket.hpp"
#include "caf/net/dsl/arg.hpp"
#include "caf/net/dsl/base.hpp"
#include "caf/net/dsl/client_config.hpp"
#include "caf/net/dsl/client_factory_base.hpp"
#include "caf/net/dsl/config_base.hpp"
#include "caf/net/dsl/generic_config.hpp"
#include "caf/net/dsl/get_name.hpp"
#include "caf/net/dsl/has_accept.hpp"
#include "caf/net/dsl/has_connect.hpp"
#include "caf/net/dsl/has_context.hpp"
#include "caf/net/dsl/has_ctx.hpp"
#include "caf/net/dsl/has_uri_connect.hpp"
#include "caf/net/dsl/server_config.hpp"
#include "caf/net/dsl/server_factory_base.hpp"
#include "caf/net/fwd.hpp"
#include "caf/net/generic_lower_layer.hpp"
#include "caf/net/generic_upper_layer.hpp"
#include "caf/net/http/arg_parser.hpp"
#include "caf/net/http/config.hpp"
#include "caf/net/http/lower_layer.hpp"
#include "caf/net/http/method.hpp"
#include "caf/net/http/request.hpp"
#include "caf/net/http/request_header.hpp"
#include "caf/net/http/responder.hpp"
#include "caf/net/http/response.hpp"
#include "caf/net/http/route.hpp"
#include "caf/net/http/router.hpp"
#include "caf/net/http/server.hpp"
#include "caf/net/http/server_factory.hpp"
#include "caf/net/http/status.hpp"
#include "caf/net/http/upper_layer.hpp"
#include "caf/net/http/v1.hpp"
#include "caf/net/http/with.hpp"
#include "caf/net/ip.hpp"
#include "caf/net/lp/client_factory.hpp"
#include "caf/net/lp/config.hpp"
#include "caf/net/lp/default_trait.hpp"
#include "caf/net/lp/frame.hpp"
#include "caf/net/lp/framing.hpp"
#include "caf/net/lp/lower_layer.hpp"
#include "caf/net/lp/server_factory.hpp"
#include "caf/net/lp/upper_layer.hpp"
#include "caf/net/lp/with.hpp"
#include "caf/net/make_actor_shell.hpp"
#include "caf/net/middleman.hpp"
#include "caf/net/multiplexer.hpp"
#include "caf/net/network_socket.hpp"
#include "caf/net/octet_stream/errc.hpp"
#include "caf/net/octet_stream/lower_layer.hpp"
#include "caf/net/octet_stream/policy.hpp"
#include "caf/net/octet_stream/transport.hpp"
#include "caf/net/octet_stream/upper_layer.hpp"
#include "caf/net/pipe_socket.hpp"
#include "caf/net/prometheus.hpp"
#include "caf/net/receive_policy.hpp"
#include "caf/net/socket.hpp"
#include "caf/net/socket_event_layer.hpp"
#include "caf/net/socket_guard.hpp"
#include "caf/net/socket_id.hpp"
#include "caf/net/socket_manager.hpp"
#include "caf/net/ssl/connection.hpp"
#include "caf/net/ssl/context.hpp"
#include "caf/net/ssl/dtls.hpp"
#include "caf/net/ssl/errc.hpp"
#include "caf/net/ssl/format.hpp"
#include "caf/net/ssl/password.hpp"
#include "caf/net/ssl/startup.hpp"
#include "caf/net/ssl/tcp_acceptor.hpp"
#include "caf/net/ssl/tls.hpp"
#include "caf/net/ssl/transport.hpp"
#include "caf/net/ssl/verify.hpp"
#include "caf/net/stream_socket.hpp"
#include "caf/net/tcp_accept_socket.hpp"
#include "caf/net/tcp_stream_socket.hpp"
#include "caf/net/this_host.hpp"
#include "caf/net/typed_actor_shell.hpp"
#include "caf/net/udp_datagram_socket.hpp"
#include "caf/net/web_socket/acceptor.hpp"
#include "caf/net/web_socket/client.hpp"
#include "caf/net/web_socket/client_factory.hpp"
#include "caf/net/web_socket/config.hpp"
#include "caf/net/web_socket/default_trait.hpp"
#include "caf/net/web_socket/frame.hpp"
#include "caf/net/web_socket/framing.hpp"
#include "caf/net/web_socket/handshake.hpp"
#include "caf/net/web_socket/has_on_request.hpp"
#include "caf/net/web_socket/lower_layer.hpp"
#include "caf/net/web_socket/server.hpp"
#include "caf/net/web_socket/server_factory.hpp"
#include "caf/net/web_socket/status.hpp"
#include "caf/net/web_socket/switch_protocol.hpp"
#include "caf/net/web_socket/upper_layer.hpp"
#include "caf/net/web_socket/with.hpp"
#include "caf/no_stages.hpp"
#include "caf/node_id.hpp"
#include "caf/none.hpp"
#include "caf/openssl/all.hpp"
#include "caf/openssl/manager.hpp"
#include "caf/openssl/middleman_actor.hpp"
#include "caf/openssl/publish.hpp"
#include "caf/openssl/remote_actor.hpp"
#include "caf/openssl/session.hpp"
#include "caf/openssl/unpublish.hpp"
#include "caf/optional.hpp"
#include "caf/others.hpp"
#include "caf/parser_state.hpp"
#include "caf/pec.hpp"
#include "caf/policy/arg.hpp"
#include "caf/policy/scheduler_policy.hpp"
#include "caf/policy/select_all.hpp"
#include "caf/policy/select_any.hpp"
#include "caf/policy/single_response.hpp"
#include "caf/policy/tcp.hpp"
#include "caf/policy/udp.hpp"
#include "caf/policy/unprofiled.hpp"
#include "caf/policy/work_sharing.hpp"
#include "caf/policy/work_stealing.hpp"
#include "caf/prohibit_top_level_spawn_marker.hpp"
#include "caf/proxy_registry.hpp"
#include "caf/raise_error.hpp"
#include "caf/ref_counted.hpp"
#include "caf/replies_to.hpp"
#include "caf/response_handle.hpp"
#include "caf/response_promise.hpp"
#include "caf/response_type.hpp"
#include "caf/result.hpp"
#include "caf/resumable.hpp"
#include "caf/save_inspector.hpp"
#include "caf/save_inspector_base.hpp"
#include "caf/scheduled_actor.hpp"
#include "caf/scheduled_actor/flow.hpp"
#include "caf/scheduler.hpp"
#include "caf/scheduler/abstract_coordinator.hpp"
#include "caf/scheduler/coordinator.hpp"
#include "caf/scheduler/profiled_coordinator.hpp"
#include "caf/scheduler/test_coordinator.hpp"
#include "caf/scheduler/worker.hpp"
#include "caf/scoped_actor.hpp"
#include "caf/scoped_execution_unit.hpp"
#include "caf/sec.hpp"
#include "caf/send.hpp"
#include "caf/serializer.hpp"
#include "caf/settings.hpp"
#include "caf/skip.hpp"
#include "caf/span.hpp"
#include "caf/spawn_options.hpp"
#include "caf/stateful_actor.hpp"
#include "caf/stream.hpp"
#include "caf/string_algorithms.hpp"
#include "caf/string_view.hpp"
#include "caf/system_messages.hpp"
#include "caf/telemetry/collector/prometheus.hpp"
#include "caf/telemetry/counter.hpp"
#include "caf/telemetry/dbl_gauge.hpp"
#include "caf/telemetry/gauge.hpp"
#include "caf/telemetry/histogram.hpp"
#include "caf/telemetry/importer/process.hpp"
#include "caf/telemetry/int_gauge.hpp"
#include "caf/telemetry/label.hpp"
#include "caf/telemetry/label_view.hpp"
#include "caf/telemetry/metric.hpp"
#include "caf/telemetry/metric_family.hpp"
#include "caf/telemetry/metric_family_impl.hpp"
#include "caf/telemetry/metric_impl.hpp"
#include "caf/telemetry/metric_registry.hpp"
#include "caf/telemetry/metric_type.hpp"
#include "caf/telemetry/timer.hpp"
#include "caf/term.hpp"
#include "caf/test/and_given.hpp"
#include "caf/test/and_then.hpp"
#include "caf/test/and_when.hpp"
#include "caf/test/bdd_dsl.hpp"
#include "caf/test/binary_predicate.hpp"
#include "caf/test/block.hpp"
#include "caf/test/block_type.hpp"
#include "caf/test/caf_test_main.hpp"
#include "caf/test/context.hpp"
#include "caf/test/dsl.hpp"
#include "caf/test/factory.hpp"
#include "caf/test/fixture/deterministic.hpp"
#include "caf/test/fixture/flow.hpp"
#include "caf/test/fwd.hpp"
#include "caf/test/given.hpp"
#include "caf/test/io_dsl.hpp"
#include "caf/test/nesting_error.hpp"
#include "caf/test/nil.hpp"
#include "caf/test/outline.hpp"
#include "caf/test/registry.hpp"
#include "caf/test/reporter.hpp"
#include "caf/test/requirement_failed.hpp"
#include "caf/test/runnable.hpp"
#include "caf/test/runner.hpp"
#include "caf/test/scenario.hpp"
#include "caf/test/scope.hpp"
#include "caf/test/section.hpp"
#include "caf/test/suite.hpp"
#include "caf/test/test.hpp"
#include "caf/test/then.hpp"
#include "caf/test/unit_test.hpp"
#include "caf/test/unit_test_impl.hpp"
#include "caf/test/when.hpp"
#include "caf/thread_hook.hpp"
#include "caf/thread_owner.hpp"
#include "caf/timeout_definition.hpp"
#include "caf/timespan.hpp"
#include "caf/timestamp.hpp"
#include "caf/tracing_data.hpp"
#include "caf/tracing_data_factory.hpp"
#include "caf/type_id.hpp"
#include "caf/type_id_list.hpp"
#include "caf/typed_actor.hpp"
#include "caf/typed_actor_pointer.hpp"
#include "caf/typed_actor_view.hpp"
#include "caf/typed_actor_view_base.hpp"
#include "caf/typed_behavior.hpp"
#include "caf/typed_event_based_actor.hpp"
#include "caf/typed_message_view.hpp"
#include "caf/typed_response_promise.hpp"
#include "caf/typed_stream.hpp"
#include "caf/unit.hpp"
#include "caf/unordered_flat_map.hpp"
#include "caf/unsafe_behavior_init.hpp"
#include "caf/uri.hpp"
#include "caf/uri_builder.hpp"
#include "caf/uuid.hpp"
#include "caf/variant_wrapper.hpp"
#include "caf/weak_intrusive_ptr.hpp"