KDBindings API Documentation 1.0.95
Loading...
Searching...
No Matches
08-managing-connections/main.cpp

An example of how to use a ScopedConnection and ConnectionBlocker to manage when a Connection is disconnected or blocked.

Expected output:

Guard is connected: 1
Connection is not blocked: 3
Connection is not blocked: 5
/*
This file is part of KDBindings.
SPDX-FileCopyrightText: 2021 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
Author: Leon Matthes <leon.matthes@kdab.com>
SPDX-License-Identifier: MIT
Contact KDAB at <info@kdab.com> for commercial licensing options.
*/
#include <ios>
#include <iostream>
#include <string>
using namespace KDBindings;
void displayLabelled(const std::string &label, int value)
{
std::cout << label << ": " << value << std::endl;
}
int main()
{
Signal<int> signal;
{
// A ScopedConnection will disconnect the connection once it goes out of scope.
// It is especially useful if you're connecting to a member function.
// Storing a ScopedConnection in the object that contains the slot ensures the connection
// is disconnected when the object is destructed.
// This ensures that there are no dangling connections.
ScopedConnection guard = signal.connect(displayLabelled, "Guard is connected");
signal.emit(1);
} // The connection is disconnected here
signal.emit(2);
ConnectionHandle handle = signal.connect(displayLabelled, "Connection is not blocked");
signal.emit(3);
{
// A ConnectionBlocker will block a connection for the duration of its scope.
// This is a good way to avoid endless-recursion, or to suppress updates for a short time.
ConnectionBlocker blocker(handle); // The connection is blocked here
signal.emit(4);
} // The connection is un-blocked here
signal.emit(5);
return 0;
}
A ConnectionBlocker is a convenient RAII-style mechanism for temporarily blocking a connection.
Definition signal.h:613
A ConnectionHandle represents the connection of a Signal to a slot (i.e. a function that is called wh...
A ScopedConnection is a RAII-style way to make sure a Connection is disconnected.
A Signal provides a mechanism for communication between objects.
Definition signal.h:72
void emit(Args... p) const
Definition signal.h:568
KDBINDINGS_WARN_UNUSED ConnectionHandle connect(std::function< void(Args...)> const &slot)
Definition signal.h:337
The main namespace of the KDBindings library.
Definition binding.h:21

© Klarälvdalens Datakonsult AB (KDAB)
"The Qt, C++ and OpenGL Experts"
https://www.kdab.com/
KDBindings
Reactive programming & data binding in C++
https://github.com/KDAB/KDBindings/
Generated on Tue Mar 25 2025 14:25:48 for KDBindings API Documentation by doxygen 1.9.8