Opened 10 years ago

Closed 10 years ago

#7445 closed Feature Requests (fixed)

Async: Add future<>.then

Reported by: viboes Owned by: viboes
Milestone: Boost 1.54.0 Component: thread
Version: Boost 1.51.0 Severity: Not Applicable
Keywords: Cc:

Description

Add future<>.then as proposed in [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3428.pdf A Standardized Representation of Asynchronous Operations].

Change History (6)

comment:1 by viboes, 10 years ago

Severity: ProblemNot Applicable
Status: newassigned
Summary: Add future<>.thenAsync: Add future<>.then

comment:2 by viboes, 10 years ago

Milestone: To Be Determined

comment:3 by viboes, 10 years ago

Committed in trunk revision [81111]. Emulate move semantics.

comment:4 by viboes, 10 years ago

Committed revision [81667].

comment:5 by viboes, 10 years ago

Milestone: Boost 1.55.0

Committed revision [83672][83676].

comment:6 by viboes, 10 years ago

Milestone: Boost 1.55.0Boost 1.54.0
Resolution: fixed
Status: assignedclosed

Only the prototype has been implemented

  template<typename F>
  future<typename boost::result_of<F( future&)>::type> 
  then(F&& func);
Note: See TracTickets for help on using tickets.