Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

depends

Make ready a future after a precondition future readies.

Synopsis
future depends(future<> precondition, future<> out)
Parameters

Type

Concept

Name

Description

future<>

precondition

The future which must signal before the returned future signals.

future<>

out

The future to return.

Returns

A future which returns out after precondition signals.

Header

#include <boost/afio/v2/afio.hpp>


PrevUpHomeNext