aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLibravatar Daniel Wigton <daniel@stonecottageweb.com>2024-07-06 15:53:10 -0500
committerLibravatar Daniel Wigton <daniel@stonecottageweb.com>2024-07-06 15:53:10 -0500
commitfa3f0dd7c95897b06a9185317910b2abb474fc28 (patch)
tree879acc1676eb0d379ca039699ee40e558c465c91 /include
parentdbf4df01cd58957b23ef2ef8316e31d2524246a8 (diff)
empty
Diffstat (limited to 'include')
-rw-r--r--include/nostr.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/nostr.hpp b/include/nostr.hpp
index b2cdfc5..e699f21 100644
--- a/include/nostr.hpp
+++ b/include/nostr.hpp
@@ -177,7 +177,8 @@ public:
* @brief Queries all open relay connections for events matching the given set of filters, and
* returns all stored matching events returned by the relays.
* @param filters The filters to use for the query.
- * @returns A vector of all events matching the filters from all open relay connections.
+ * @returns A std::future that will eventually hold a vector of all events matching the filters
+ * from all open relay connections.
* @remark This method runs until the relays send an EOSE message, indicating they have no more
* stored events matching the given filters. When the EOSE message is received, the method
* will close the subscription for each relay and return the received events.
@@ -185,7 +186,7 @@ public:
* set on the filters in the range 1-64, inclusive. If no valid limit is given, it will be
* defaulted to 16.
*/
- std::vector<std::shared_ptr<Event>> queryRelays(std::shared_ptr<Filters> filters);
+ std::future<std::vector<std::shared_ptr<Event>>> queryRelays(std::shared_ptr<Filters> filters);
/**
* @brief Queries all open relay connections for events matching the given set of filters.