continuable/4.2.2

C++14 asynchronous allocation aware futures (supporting then, exception handling, coroutines and connections)
Recipe info
2023-11-08

Available packages
Header Only

Install
Add the following line to your conanfile.txt:
[requires]
continuable/4.2.2

Using continuable

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]
continuable/4.2.2
[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("continuable/4.2.2")

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

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

# ...
find_package(continuable REQUIRED)
# ...
target_link_libraries(YOUR_TARGET continuable::continuable)

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

#include "continuable/continuable-base.hpp"
#include "continuable/continuable-connections.hpp"
#include "continuable/continuable-coroutine.hpp"
#include "continuable/continuable-operations.hpp"
#include "continuable/continuable-primitives.hpp"
#include "continuable/continuable-promise-base.hpp"
#include "continuable/continuable-promisify.hpp"
#include "continuable/continuable-result.hpp"
#include "continuable/continuable-transforms.hpp"
#include "continuable/continuable-traverse-async.hpp"
#include "continuable/continuable-traverse.hpp"
#include "continuable/continuable-types.hpp"
#include "continuable/continuable.hpp"
#include "continuable/detail/connection/connection-aggregated.hpp"
#include "continuable/detail/connection/connection-all.hpp"
#include "continuable/detail/connection/connection-any.hpp"
#include "continuable/detail/connection/connection-seq.hpp"
#include "continuable/detail/connection/connection.hpp"
#include "continuable/detail/core/annotation.hpp"
#include "continuable/detail/core/base.hpp"
#include "continuable/detail/core/types.hpp"
#include "continuable/detail/external/asio.hpp"
#include "continuable/detail/features.hpp"
#include "continuable/detail/operations/async.hpp"
#include "continuable/detail/operations/loop.hpp"
#include "continuable/detail/operations/split.hpp"
#include "continuable/detail/other/coroutines.hpp"
#include "continuable/detail/other/erasure.hpp"
#include "continuable/detail/other/promisify.hpp"
#include "continuable/detail/other/testing.hpp"
#include "continuable/detail/transforms/future.hpp"
#include "continuable/detail/transforms/wait.hpp"
#include "continuable/detail/traversal/container-category.hpp"
#include "continuable/detail/traversal/range.hpp"
#include "continuable/detail/traversal/traverse-async.hpp"
#include "continuable/detail/traversal/traverse.hpp"
#include "continuable/detail/utility/identity.hpp"
#include "continuable/detail/utility/result-trait.hpp"
#include "continuable/detail/utility/result-variant.hpp"
#include "continuable/detail/utility/traits.hpp"
#include "continuable/detail/utility/util.hpp"
#include "continuable/external/asio.hpp"
#include "continuable/external/gtest.hpp"
#include "continuable/operations/async.hpp"
#include "continuable/operations/loop.hpp"
#include "continuable/operations/split.hpp"
#include "continuable/transforms/future.hpp"
#include "continuable/transforms/wait.hpp"