sdi_toolBox
inode.h
Go to the documentation of this file.
1/*
2 Copyright (c) 2026 - SD-Innovation S.A.S. - FRANCE
3*/
4
5/*
6ver: 2.x.x - build: 2026-04-28
7*/
8
9/*
10The zlib License Copyright (c) 2026 SD-Innovation S.A.S. This software is provided ‘as-is’, without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution.
11*/
12
13#pragma once
14
15#include "message.h"
16
18{
19//--------------------------------------------------------------
41class INode
42{
43 friend class Bus;
44
45 public:
48
52 INode() = default;
53
57 virtual ~INode() = default;
58
64 INode(const INode &obj) = delete;
65
71 INode(INode &&obj) noexcept = delete;
72
78 INode &operator=(const INode &obj) = delete;
79
85 INode &operator=(INode &&obj) noexcept = delete;
86
88
89 private:
104 virtual void append(const std::shared_ptr<Message> &message) = 0;
105};
106//--------------------------------------------------------------
107} // namespace sdi_toolBox::desktop::eventBus
Central message dispatcher for the event bus system.
Definition bus.h:63
Abstract interface representing a subscriber node in the event bus system.
Definition inode.h:42
INode & operator=(INode &&obj) noexcept=delete
Move assignment operator - deleted.
virtual ~INode()=default
Default destructor.
INode(INode &&obj) noexcept=delete
Move constructor - deleted.
INode(const INode &obj)=delete
Copy constructor - deleted.
INode & operator=(const INode &obj)=delete
Copy assignment operator - deleted.
virtual void append(const std::shared_ptr< Message > &message)=0
Insert a message into the node's internal message queue.
INode()=default
Default constructor.
Lightweight thread-safe event bus for decoupled message passing.
Definition bus.h:27