so5extra/1.6.1

A collection of various SObjectizer's extensions.
Recipe info
2023-10-31

Available packages
Header Only

Install
Add the following line to your conanfile.txt:
[requires]
so5extra/1.6.1

Using so5extra

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]
so5extra/1.6.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("so5extra/1.6.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): so5extra
  • CMake target name(s): sobjectizer::so5extra
  • so_5_extra => sobjectizer::so5extra
    
  • pkg-config file name(s): so5extra.pc
  • so_5_extra => so5extra-so_5_extra.pc
    

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

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

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

#include "so_5_extra/async_op/details.hpp"
#include "so_5_extra/async_op/errors.hpp"
#include "so_5_extra/async_op/time_limited.hpp"
#include "so_5_extra/async_op/time_unlimited.hpp"
#include "so_5_extra/disp/asio_one_thread/pub.hpp"
#include "so_5_extra/disp/asio_thread_pool/pub.hpp"
#include "so_5_extra/env_infrastructures/asio/impl/common.hpp"
#include "so_5_extra/env_infrastructures/asio/simple_mtsafe.hpp"
#include "so_5_extra/env_infrastructures/asio/simple_not_mtsafe.hpp"
#include "so_5_extra/enveloped_msg/errors.hpp"
#include "so_5_extra/enveloped_msg/just_envelope.hpp"
#include "so_5_extra/enveloped_msg/send_functions.hpp"
#include "so_5_extra/enveloped_msg/time_limited_delivery.hpp"
#include "so_5_extra/error_ranges.hpp"
#include "so_5_extra/mboxes/broadcast.hpp"
#include "so_5_extra/mboxes/collecting_mbox.hpp"
#include "so_5_extra/mboxes/composite.hpp"
#include "so_5_extra/mboxes/first_last_subscriber_notification.hpp"
#include "so_5_extra/mboxes/inflight_limit.hpp"
#include "so_5_extra/mboxes/proxy.hpp"
#include "so_5_extra/mboxes/retained_msg.hpp"
#include "so_5_extra/mboxes/round_robin.hpp"
#include "so_5_extra/mboxes/unique_subscribers.hpp"
#include "so_5_extra/mchains/fixed_size.hpp"
#include "so_5_extra/revocable_msg/pub.hpp"
#include "so_5_extra/revocable_timer/pub.hpp"
#include "so_5_extra/shutdowner/shutdowner.hpp"
#include "so_5_extra/sync/pub.hpp"