YAMI4 C++ Library 2.0.0
Messaging Solution for Distributed Systems
Loading...
Searching...
No Matches
connection_event_dispatcher_base.h
1// Copyright Maciej Sobczak 2008-2022.
2// This file is part of YAMI4.
3// See the package-level LICENSE.txt file.
4
5#ifndef YAMICPP_CONNECTION_EVENT_DISPATCHER_BASE_H_INCLUDED
6#define YAMICPP_CONNECTION_EVENT_DISPATCHER_BASE_H_INCLUDED
7
8#include "connection_event.h"
9#include <yami4-core/dll.h>
10
11#include <string>
12
13namespace yami
14{
15
16namespace details
17{
18
20{
21public:
23
24 virtual void dispatch(
25 const std::string & name, connection_event event) = 0;
26};
27
28} // namespace details
29
30} // namespace yami
31
32#endif // YAMICPP_CONNECTION_EVENT_DISPATCHER_BASE_H_INCLUDED
Definition: connection_event_dispatcher_base.h:20
Namespace devoted to everything related to YAMI4.
Definition: agent.h:21
connection_event
Kind of connection event.
Definition: connection_event.h:13