15 #ifndef AOM_VARIADIC_STREAM_FUTURE_INCLUDED_H 16 #define AOM_VARIADIC_STREAM_FUTURE_INCLUDED_H 25 #include "var_future/impl/stream/stream_storage_decl.h" 31 template <
typename Alloc,
typename... Ts>
40 template <
typename Alloc,
typename... Ts>
45 using fullfill_type =
typename storage_type::fullfill_type;
75 template <
typename CbT>
89 template <
typename QueueT,
typename CbT>
93 template <
typename SubAlloc,
typename... Us>
97 detail::Storage_ptr<storage_type> storage_;
105 template <
typename... Ts>
114 template <
typename Alloc,
typename... Ts>
119 using fullfill_type =
typename storage_type::fullfill_type;
120 using fail_type = std::exception_ptr;
153 future_type
get_future(
const Alloc& alloc = Alloc());
160 template <
typename... Us>
181 operator bool()
const;
184 detail::Storage_ptr<storage_type> storage_;
195 template <
typename... Ts>
199 #include "var_future/impl/stream/stream_future.h" 200 #include "var_future/impl/stream/stream_promise.h" 201 #include "var_future/impl/stream/stream_storage_impl.h" Definition: stream_future.h:32
Basic_stream_promise & operator=(Basic_stream_promise &&)=default
Basic_stream_promise()
Construct a new Basic_stream_promise object.
Basic_stream_future()=default
Default construction.
Represents a stream of values that will be eventually available.
Definition: stream_future.h:41
detail::Stream_storage< Alloc, Ts... > storage_type
The underlying storage type.
Definition: stream_future.h:44
Basic_stream_future & operator=(Basic_stream_future &&)=default
Move assignment.
void complete()
Closes the stream.
Basic_future< Alloc, void > for_each(CbT &&cb)
Invokes a callback on each value in the stream wherever they are produced.
void set_exception(fail_type)
Notify failure of the stream.
future_type get_future(const Alloc &alloc=Alloc())
Get the future object.
void push(Us &&...)
Add a datapoint to the stream.
~Basic_stream_promise()
Destroy the Basic_stream_promise object.
Values that will be eventually available.
Definition: future.h:48