Flow-IPC 1.0.0
Flow-IPC project: Full implementation reference.
|
#include "ipc/session/session_fwd.hpp"
#include "ipc/session/schema/common.capnp.h"
#include "ipc/transport/struc/heap_serializer.hpp"
#include <experimental/propagate_const>
Go to the source code of this file.
Classes | |
class | ipc::session::Session< Mdt_payload > |
A documentation-only concept defining the local side of an IPC conversation (session) with another entity (typically a separate process), also represented by a Session-implementing object, through which one can easily open IPC channels (ipc::transport::Channel), among other IPC features. More... | |
class | ipc::session::Session_mv< Session_impl_t > |
Implements the Session concept when it is in PEER state. More... | |
Namespaces | |
namespace | ipc |
Catch-all namespace for the Flow-IPC project: A library/API in modern C++17 providing high-performance communication between processes. | |
namespace | ipc::session |
Flow-IPC module providing the broad lifecycle and shared-resource organization – via the session concept – in such a way as to make it possible for a given pair of processes A and B to set up ipc::transport structured- or unstructured-message channels for general IPC, as well as to share data in SHared Memory (SHM). | |
Macros | |
#define | TEMPLATE_SESSION_MV template<typename Session_impl_t> |
Internally used macro; public API users should disregard (same deal as in struc/channel.hpp). More... | |
#define | CLASS_SESSION_MV Session_mv<Session_impl_t> |
Internally used macro; public API users should disregard (same deal as in struc/channel.hpp). More... | |
Functions | |
template<typename Session_impl_t > | |
std::ostream & | ipc::session::operator<< (std::ostream &os, const Session_mv< Session_impl_t > &val) |
Prints string representation of the given Session_mv to the given ostream . More... | |
#define CLASS_SESSION_MV Session_mv<Session_impl_t> |
Internally used macro; public API users should disregard (same deal as in struc/channel.hpp).
Definition at line 845 of file session.hpp.
#define TEMPLATE_SESSION_MV template<typename Session_impl_t> |
Internally used macro; public API users should disregard (same deal as in struc/channel.hpp).
Definition at line 842 of file session.hpp.