YAMI4 C++ Library 2.0.0
Messaging Solution for Distributed Systems
Loading...
Searching...
No Matches
io_error_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_IO_ERROR_DISPATCHER_BASE_H_INCLUDED
6#define YAMICPP_IO_ERROR_DISPATCHER_BASE_H_INCLUDED
7
8namespace yami
9{
10
11namespace details
12{
13
15{
16public:
17 virtual ~io_error_dispatcher_base() {}
18
19 virtual void dispatch(int error_code, const char * description) = 0;
20};
21
22} // namespace details
23
24} // namespace yami
25
26#endif // YAMICPP_IO_ERROR_DISPATCHER_BASE_H_INCLUDED
Definition: io_error_dispatcher_base.h:15
Namespace devoted to everything related to YAMI4.
Definition: agent.h:21