Flow-IPC 1.0.0
Flow-IPC project: Full implementation reference.
Classes | Namespaces | Macros | Functions
session_server_impl.hpp File Reference
#include "ipc/session/detail/session_fwd.hpp"
#include "ipc/session/detail/server_session_dtl.hpp"
#include "ipc/session/error.hpp"
#include "ipc/session/app.hpp"
#include "ipc/transport/native_socket_stream_acceptor.hpp"
#include "ipc/transport/blob_stream_mq.hpp"
#include "ipc/transport/error.hpp"
#include "ipc/util/detail/util.hpp"
#include <boost/interprocess/sync/named_mutex.hpp>
#include <boost/interprocess/sync/scoped_lock.hpp>
#include <boost/move/make_unique.hpp>

Go to the source code of this file.

Classes

class  ipc::session::Session_server_impl< Session_server_t, Server_session_t >
 Internal class template comprising API/logic common to every Session_server variant, meant to be privately sub-classed and largely forwarded. More...
 
struct  ipc::session::Session_server_impl< Session_server_t, Server_session_t >::State
 All internal mutable state of Session_server_impl. 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_SERVER_IMPL    template<typename Session_server_t, typename Server_session_t>
 Internally used macro; public API users should disregard (same deal as in struc/channel.hpp). More...
 
#define CLASS_SESSION_SERVER_IMPL    Session_server_impl<Session_server_t, Server_session_t>
 Internally used macro; public API users should disregard (same deal as in struc/channel.hpp). More...
 

Functions

template<typename Session_server_t , typename Server_session_t >
std::ostream & ipc::session::operator<< (std::ostream &os, const Session_server_impl< Session_server_t, Server_session_t > &val)
 Prints string representation of the given Session_server_impl to the given ostream. More...
 

Macro Definition Documentation

◆ CLASS_SESSION_SERVER_IMPL

#define CLASS_SESSION_SERVER_IMPL    Session_server_impl<Session_server_t, Server_session_t>

Internally used macro; public API users should disregard (same deal as in struc/channel.hpp).

Definition at line 432 of file session_server_impl.hpp.

◆ TEMPLATE_SESSION_SERVER_IMPL

#define TEMPLATE_SESSION_SERVER_IMPL    template<typename Session_server_t, typename Server_session_t>

Internally used macro; public API users should disregard (same deal as in struc/channel.hpp).

Definition at line 429 of file session_server_impl.hpp.