15 #ifndef AOM_VARIADIC_FUTURE_INCLUDED_H 16 #define AOM_VARIADIC_FUTURE_INCLUDED_H 22 #include "var_future/impl/storage_decl.h" 29 template <
typename Alloc,
typename... Ts>
47 template <
typename Alloc,
typename... Ts>
49 static_assert(
sizeof...(Ts) >= 1,
"you probably meant Future<void>");
62 using fullfill_type = detail::fullfill_type_t<Ts...>;
63 using finish_type = detail::finish_type_t<Ts...>;
102 template <
typename CbT>
103 [[nodiscard]]
auto then(CbT&& callback);
118 template <
typename QueueT,
typename CbT>
119 [[nodiscard]]
auto then(QueueT& queue, CbT&& callback);
132 template <
typename CbT>
148 template <
typename QueueT,
typename CbT>
149 [[nodiscard]]
auto then_expect(QueueT& queue, CbT&& callback);
160 template <
typename CbT>
161 void finally(CbT&& callback);
174 template <
typename QueueT,
typename CbT>
175 void finally(QueueT& queue, CbT&& callback);
207 explicit Basic_future(detail::Storage_ptr<storage_type> s);
210 detail::Storage_ptr<storage_type> storage_;
213 template <
typename... Ts>
230 template <
typename Alloc,
typename... Ts>
232 static_assert(
sizeof...(Ts) >= 1,
"you probably meant Promise<void>");
238 using value_type = detail::future_value_type_t<Ts...>;
240 using fullfill_type = detail::fullfill_type_t<Ts...>;
241 using finish_type = detail::finish_type_t<Ts...>;
242 using fail_type = detail::fail_type_t<Ts...>;
263 template <
typename... Us>
272 template <
typename... Us>
273 void finish(Us&&... expecteds);
288 operator bool()
const;
291 bool future_created_ =
false;
292 bool value_assigned_ =
false;
294 detail::Storage_ptr<storage_type> storage_;
300 template <
typename... Ts>
301 using Promise = Basic_promise<std::allocator<void>, Ts...>;
310 template <
typename... FutTs>
311 auto join(FutTs&&... futures);
326 template <
typename QueueT,
typename CbT>
327 auto async(QueueT& q, CbT&& callback);
337 template <
typename Alloc,
typename... Ts>
338 Basic_future<Alloc, Ts...> flatten(Basic_future<Alloc, std::tuple<Ts...>>& rhs);
347 template <
typename... Ts>
348 auto segmented(Ts&&... args);
355 inline std::string varfut_lib_version_string();
358 #include "var_future/impl/async.h" 359 #include "var_future/impl/future.h" 360 #include "var_future/impl/join.h" 361 #include "var_future/impl/promise.h" 362 #include "var_future/impl/storage_impl.h" void set_exception(fail_type error)
Fails the promise.
Alloc allocator_type
Allocator.
Definition: future.h:58
Basic_future & operator=(Basic_future &&rhs)=default
Move assignment.
Basic_future()=default
Construct an uninitialized Future.
Error assigned to a future who's promise is destroyed before being finished.
Definition: future.h:221
detail::future_value_type_t< Ts... > value_type
Ts...
Definition: future.h:61
future_type get_future()
Get the future object.
allocator_type & allocator()
Get the allocator associated with this future.
value_type get()
Blocks until the future is finished, and then either return the value, or throw the error.
auto then(CbT &&callback)
Creates a future that is finished by the invocation of cb when this is fullfilled.
Landing for a value that finishes a Future.
Definition: future.h:30
auto std_future()
Obtain a std::future bound to this future.
auto then_expect(CbT &&callback)
Creates a future that is finished by the invocation of cb when this is finished.
void set_value(Us &&... values)
Fullfills the promise.
detail::Future_storage< Alloc, Ts... > storage_type
The underlying storage type.
Definition: future.h:55
void finish(Us &&... expecteds)
Finishes the promise.
Values that will be eventually available.
Definition: future.h:48