mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-25 23:40:05 +02:00
35 lines
1 KiB
C++
35 lines
1 KiB
C++
//
|
|
// ResourceRequestObserver.cpp
|
|
// libraries/shared/src
|
|
//
|
|
// Created by Kerry Ivan Kurian on 9/27/18.
|
|
// Copyright 2018 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#include "ResourceRequestObserver.h"
|
|
|
|
#include <QJsonArray>
|
|
#include <QJsonObject>
|
|
#include <QString>
|
|
#include <QUrl>
|
|
|
|
/**jsdoc
|
|
* Information about a resource request.
|
|
* @typedef {object} ResourceRequestObserver.ResourceRequest
|
|
* @property {string} url - The URL of the resource request.
|
|
* @property {number} callerId - An ID identifying the request.
|
|
* @property {string} extra - Extra information about the request.
|
|
*/
|
|
void ResourceRequestObserver::update(const QUrl& requestUrl,
|
|
const qint64 callerId,
|
|
const QString& extra) {
|
|
QJsonArray array;
|
|
QJsonObject data { { "url", requestUrl.toString() },
|
|
{ "callerId", callerId },
|
|
{ "extra", extra }
|
|
};
|
|
emit resourceRequestEvent(data.toVariantMap());
|
|
}
|