|
| Window (size_t windowSize) |
|
template<class Source , class Value , class Gen = Generator<Value, Source>> |
Gen | compose (GenImpl< Value, Source > &&source) const |
|
template<class Source , class Value , class Gen = Generator<Value, Source>> |
Gen | compose (const GenImpl< Value, Source > &source) const |
|
ResultGen | compose (const GenImpl< Value, Source > &source) const |
|
const Self & | self () const |
|
Self & | self () |
|
Window - For overlapping the lifetimes of pipeline values, especially with Futures.
This type is usually used through the 'window' helper function:
auto responses = byLine(STDIN) | map(makeRequestFuture) | window(1000) | map(waitFuture) | as<vector>();
Definition at line 1518 of file Base-inl.h.