fabric/streams/subscriptionnotifier.h

fabric/streams/subscriptionnotifier.h

fabric/streams/subscriptionnotifier.h

Namespaces

Name
Syntalos

Classes

Name
classSyntalos::SubscriptionNotifier
Notifies about new data on a stream subscription in a Qt event loop.

Source code

/*
 * Copyright (C) 2020-2024 Matthias Klumpp <matthias@tenstral.net>
 *
 * Licensed under the GNU Lesser General Public License Version 3
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the license, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#pragma once

#include "moduleapi.h"
#include "optionalwaitcondition.h"
#include <QObject>

namespace Syntalos
{

class SubscriptionNotifier : public QObject
{
    Q_OBJECT
public:
    explicit SubscriptionNotifier(
        const std::shared_ptr<VariantStreamSubscription> &subscription,
        QObject *parent = nullptr);
    ~SubscriptionNotifier();

signals:
    void dataReceived();

private:
    class Private;
    Q_DISABLE_COPY(SubscriptionNotifier)
    QScopedPointer<Private> d;
};

} // namespace Syntalos

Updated on 2024-09-05 at 17:39:59 +0000