sobjectizer/5.8.1

A framework for simplification of development of sophisticated concurrent and event-driven applications in C++ by using Actor, Publish-Subscribe and CSP models.
Recipe info
2023-10-18

Available packages
Linux
Windows
macOS
macOS Apple Silicon

Install
Add the following line to your conanfile.txt:
[requires]
sobjectizer/5.8.1

Using sobjectizer

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]
sobjectizer/5.8.1
[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("sobjectizer/5.8.1")

    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): sobjectizer
  • CMake target name(s): sobjectizer::StaticLib
  • _sobjectizer => sobjectizer::StaticLib
    
  • pkg-config file name(s): sobjectizer.pc
  • _sobjectizer => sobjectizer-_sobjectizer.pc
    

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

# ...
find_package(sobjectizer REQUIRED)
# ...
target_link_libraries(YOUR_TARGET sobjectizer::StaticLib)

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

#include "so_5/3rd_party/timertt/all.hpp"
#include "so_5/agent.hpp"
#include "so_5/agent_context.hpp"
#include "so_5/agent_coop_notifications.hpp"
#include "so_5/agent_ref_fwd.hpp"
#include "so_5/agent_state_listener.hpp"
#include "so_5/agent_tuning_options.hpp"
#include "so_5/all.hpp"
#include "so_5/api.hpp"
#include "so_5/atomic_refcounted.hpp"
#include "so_5/bind_transformer_helpers.hpp"
#include "so_5/compiler_features.hpp"
#include "so_5/coop.hpp"
#include "so_5/coop_handle.hpp"
#include "so_5/coop_listener.hpp"
#include "so_5/current_thread_id.hpp"
#include "so_5/custom_mbox.hpp"
#include "so_5/declspec.hpp"
#include "so_5/details/abort_on_fatal_error.hpp"
#include "so_5/details/always_false.hpp"
#include "so_5/details/at_scope_exit.hpp"
#include "so_5/details/invoke_noexcept_code.hpp"
#include "so_5/details/ios_helpers.hpp"
#include "so_5/details/lambda_traits.hpp"
#include "so_5/details/remaining_time_counter.hpp"
#include "so_5/details/rollback_on_exception.hpp"
#include "so_5/details/safe_cv_wait_for.hpp"
#include "so_5/details/suppress_exceptions.hpp"
#include "so_5/details/sync_helpers.hpp"
#include "so_5/disp/abstract_work_thread.hpp"
#include "so_5/disp/active_group/pub.hpp"
#include "so_5/disp/active_obj/pub.hpp"
#include "so_5/disp/adv_thread_pool/impl/disp.hpp"
#include "so_5/disp/adv_thread_pool/pub.hpp"
#include "so_5/disp/mpmc_queue_traits/pub.hpp"
#include "so_5/disp/mpsc_queue_traits/pub.hpp"
#include "so_5/disp/nef_one_thread/params.hpp"
#include "so_5/disp/nef_one_thread/pub.hpp"
#include "so_5/disp/nef_thread_pool/pub.hpp"
#include "so_5/disp/one_thread/params.hpp"
#include "so_5/disp/one_thread/pub.hpp"
#include "so_5/disp/prio_dedicated_threads/one_per_prio/pub.hpp"
#include "so_5/disp/prio_one_thread/quoted_round_robin/impl/demand_queue.hpp"
#include "so_5/disp/prio_one_thread/quoted_round_robin/pub.hpp"
#include "so_5/disp/prio_one_thread/quoted_round_robin/quotes.hpp"
#include "so_5/disp/prio_one_thread/reuse/work_thread.hpp"
#include "so_5/disp/prio_one_thread/strictly_ordered/impl/demand_queue.hpp"
#include "so_5/disp/prio_one_thread/strictly_ordered/pub.hpp"
#include "so_5/disp/reuse/actual_work_thread_factory_to_use.hpp"
#include "so_5/disp/reuse/data_source_prefix_helpers.hpp"
#include "so_5/disp/reuse/default_thread_pool_size.hpp"
#include "so_5/disp/reuse/make_actual_dispatcher.hpp"
#include "so_5/disp/reuse/queue_of_queues.hpp"
#include "so_5/disp/reuse/thread_pool_stats.hpp"
#include "so_5/disp/reuse/work_thread/work_thread.hpp"
#include "so_5/disp/reuse/work_thread_activity_tracking.hpp"
#include "so_5/disp/reuse/work_thread_factory_params.hpp"
#include "so_5/disp/thread_pool/impl/basic_event_queue.hpp"
#include "so_5/disp/thread_pool/impl/common_implementation.hpp"
#include "so_5/disp/thread_pool/impl/disp.hpp"
#include "so_5/disp/thread_pool/impl/work_thread_template.hpp"
#include "so_5/disp/thread_pool/pub.hpp"
#include "so_5/disp_binder.hpp"
#include "so_5/env_infrastructures.hpp"
#include "so_5/enveloped_msg.hpp"
#include "so_5/environment.hpp"
#include "so_5/environment_infrastructure.hpp"
#include "so_5/error_logger.hpp"
#include "so_5/event_exception_logger.hpp"
#include "so_5/event_queue.hpp"
#include "so_5/event_queue_hook.hpp"
#include "so_5/exception.hpp"
#include "so_5/exception_control_flags.hpp"
#include "so_5/execution_demand.hpp"
#include "so_5/experimental/testing.hpp"
#include "so_5/experimental/testing/v1/all.hpp"
#include "so_5/fwd.hpp"
#include "so_5/handler_makers.hpp"
#include "so_5/impl/agent_ptr_compare.hpp"
#include "so_5/impl/coop_private_iface.hpp"
#include "so_5/impl/coop_repository_basis.hpp"
#include "so_5/impl/delivery_filter_storage.hpp"
#include "so_5/impl/enveloped_msg_details.hpp"
#include "so_5/impl/final_dereg_chain_helpers.hpp"
#include "so_5/impl/internal_agent_iface.hpp"
#include "so_5/impl/internal_env_iface.hpp"
#include "so_5/impl/layer_core.hpp"
#include "so_5/impl/local_mbox.hpp"
#include "so_5/impl/local_mbox_basic_subscription_info.hpp"
#include "so_5/impl/make_mchain.hpp"
#include "so_5/impl/mbox_core.hpp"
#include "so_5/impl/mbox_iface_for_timers.hpp"
#include "so_5/impl/mchain_details.hpp"
#include "so_5/impl/message_limit_action_msg_tracer.hpp"
#include "so_5/impl/message_sink_for_agent.hpp"
#include "so_5/impl/message_sink_with_message_limit.hpp"
#include "so_5/impl/message_sink_without_message_limit.hpp"
#include "so_5/impl/mpsc_mbox.hpp"
#include "so_5/impl/msg_tracing_helpers.hpp"
#include "so_5/impl/mt_env_infrastructure.hpp"
#include "so_5/impl/named_local_mbox.hpp"
#include "so_5/impl/process_unhandled_exception.hpp"
#include "so_5/impl/run_stage.hpp"
#include "so_5/impl/st_env_infrastructure_reuse.hpp"
#include "so_5/impl/std_message_sinks.hpp"
#include "so_5/impl/std_msg_tracer_holder.hpp"
#include "so_5/impl/stop_guard_repo.hpp"
#include "so_5/impl/subscription_storage_iface.hpp"
#include "so_5/impl/thread_join_stuff.hpp"
#include "so_5/mbox.hpp"
#include "so_5/mbox_fwd.hpp"
#include "so_5/mbox_namespace_name.hpp"
#include "so_5/mchain.hpp"
#include "so_5/mchain_helper_functions.hpp"
#include "so_5/mchain_select.hpp"
#include "so_5/mchain_select_ifaces.hpp"
#include "so_5/message.hpp"
#include "so_5/message_handler_format_detector.hpp"
#include "so_5/message_holder.hpp"
#include "so_5/message_limit.hpp"
#include "so_5/message_sink.hpp"
#include "so_5/mhood.hpp"
#include "so_5/msg_tracing.hpp"
#include "so_5/msinks/transform_then_redirect.hpp"
#include "so_5/multi_sink_binding.hpp"
#include "so_5/nonempty_name.hpp"
#include "so_5/optional.hpp"
#include "so_5/outliving.hpp"
#include "so_5/priority.hpp"
#include "so_5/queue_locks_defaults_manager.hpp"
#include "so_5/ret_code.hpp"
#include "so_5/rt.hpp"
#include "so_5/send_functions.hpp"
#include "so_5/single_sink_binding.hpp"
#include "so_5/so_layer.hpp"
#include "so_5/spinlocks.hpp"
#include "so_5/state.hpp"
#include "so_5/stats/controller.hpp"
#include "so_5/stats/impl/activity_tracking.hpp"
#include "so_5/stats/impl/ds_agent_core_stats.hpp"
#include "so_5/stats/impl/ds_mbox_core_stats.hpp"
#include "so_5/stats/impl/ds_timer_thread_stats.hpp"
#include "so_5/stats/impl/st_env_stuff.hpp"
#include "so_5/stats/impl/std_controller.hpp"
#include "so_5/stats/messages.hpp"
#include "so_5/stats/prefix.hpp"
#include "so_5/stats/repository.hpp"
#include "so_5/stats/std_names.hpp"
#include "so_5/stats/work_thread_activity.hpp"
#include "so_5/stop_guard.hpp"
#include "so_5/subscription_storage_fwd.hpp"
#include "so_5/thread_helper_functions.hpp"
#include "so_5/timers.hpp"
#include "so_5/transformed_message.hpp"
#include "so_5/types.hpp"
#include "so_5/unique_subscribers_mbox.hpp"
#include "so_5/version.hpp"
#include "so_5/wait_indication.hpp"
#include "so_5/wrapped_env.hpp"