blob: 5444161724c50380379c0cfe7dae897955ca0a07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#pragma once
#include "converters.h"
#include "events/eventloader.h"
#include "jobs/basejob.h"
namespace Quotient {
// Operations
/*! \brief Get events and state around the specified event.
*
* This API returns a number of events that happened just before and
* after the specified event. This allows clients to get the context
* surrounding an event.
*/
class GetEventContextJob : public BaseJob {
public:
/*! \brief Get events and state around the specified event.
*
* \param roomId
* The room to get events from.
* \param eventId
* The event to get context around.
* \param limit
* The maximum number of events to return. Default: 10.
*/
explicit GetEventContextJob(const QString& roomId, const QString& eventId,
Omittable<int> limit = none);
/*! \brief Construct a URL without creating a full-fledged job object
*
* This function can be used when a URL for GetEventContextJob
* is necessary but the job itself isn't.
*/
static QUrl makeRequestUrl(QUrl baseUrl, const QString& roomId,
const QString& eventId,
Omittable<int> limit = none);
~GetEventContextJob() override;
// Result properties
/// A token that can be used to paginate backwards with.
const QString& begin() const;
/// A token that can be used to paginate forwards with.
const QString& end() const;
/// A list of room events that happened just before the
/// requested event, in reverse-chronological order.
RoomEvents&& eventsBefore();
/// Details of the requested event.
RoomEventPtr&& event();
/// A list of room events that happened just after the
/// requested event, in chronological order.
RoomEvents&& eventsAfter();
/// The state of the room at the last event returned.
StateEvents&& state();
protected:
Status parseJson(const QJsonDocument& data) override;
private:
class Private;
QScopedPointer<Private> d;
};
} // namespace Quotient
|