STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Public Member Functions | Private Member Functions | Private Attributes | Friends | List of all members
Concurrency::completion_future Class Reference

Class represents a future corresponding to a C++ AMP asynchronous operation More...

#include <amprt.h>

Public Member Functions

 completion_future ()
 Default constructor More...
 
 completion_future (const completion_future &_Other)
 Copy constructor More...
 
 completion_future (completion_future &&_Other)
 Move constructor More...
 
 ~completion_future ()
 Destructor More...
 
completion_futureoperator= (const completion_future &_Other)
 Copy assignment operator More...
 
completion_futureoperator= (completion_future &&_Other)
 Move assignment operator More...
 
void get () const
 Waits until the associated asynchronous operation completes Throws the stored exception if one was encountered during the asynchronous operation More...
 
bool valid () const
 Returns true if the object is associated with an asynchronous operation More...
 
void wait () const
 Blocks until the associated asynchronous operation completes More...
 
template<class _Rep , class _Period >
std::future_status wait_for (const std::chrono::duration< _Rep, _Period > &_Rel_time) const
 Blocks until the associated asynchronous operation completes or _Rel_time has elapsed More...
 
template<class _Clock , class _Duration >
std::future_status wait_until (const std::chrono::time_point< _Clock, _Duration > &_Abs_time) const
 Blocks until the associated asynchronous operation completes or until the current time exceeds _Abs_time More...
 
 operator std::shared_future< void > () const
 Returns a std::shared_future<void> object corresponding to the associated asynchronous operation More...
 
template<typename _Functor >
void then (const _Functor &_Func) const
 Chains a callback Functor to the completion_future to be executed when the associated asynchronous operation finishes execution More...
 
concurrency::task< voidto_task () const
 Returns a concurrency::task<void> object corresponding to the associated asynchronous operation More...
 

Private Member Functions

 completion_future (const std::shared_future< void > &_Shared_future, const concurrency::task< void > &_Task)
 

Private Attributes

std::shared_future< void_M_shared_future
 
concurrency::task< void_M_task
 

Friends

class details::_Amp_runtime_trace
 

Detailed Description

Class represents a future corresponding to a C++ AMP asynchronous operation

Constructor & Destructor Documentation

Concurrency::completion_future::completion_future ( )
inline

Default constructor

1351  {
1352  }
Concurrency::completion_future::completion_future ( const completion_future _Other)
inline

Copy constructor

1358  : _M_shared_future(_Other._M_shared_future),
1359  _M_task(_Other._M_task)
1360  {
1361  }
std::shared_future< void > _M_shared_future
Definition: amprt.h:1511
concurrency::task< void > _M_task
Definition: amprt.h:1512
Concurrency::completion_future::completion_future ( completion_future &&  _Other)
inline

Move constructor

1367  : _M_shared_future(std::move(_Other._M_shared_future)),
1368  _M_task(std::move(_Other._M_task))
1369  {
1370  }
std::shared_future< void > _M_shared_future
Definition: amprt.h:1511
_OutIt move(_InIt _First, _InIt _Last, _OutIt _Dest)
Definition: xutility:2447
concurrency::task< void > _M_task
Definition: amprt.h:1512
Concurrency::completion_future::~completion_future ( )
inline

Destructor

1376  {
1377  }
Concurrency::completion_future::completion_future ( const std::shared_future< void > &  _Shared_future,
const concurrency::task< void > &  _Task 
)
inlineprivate
1507  : _M_shared_future(_Shared_future), _M_task(_Task)
1508  {
1509  }
std::shared_future< void > _M_shared_future
Definition: amprt.h:1511
concurrency::task< void > _M_task
Definition: amprt.h:1512

Member Function Documentation

void Concurrency::completion_future::get ( ) const
inline

Waits until the associated asynchronous operation completes Throws the stored exception if one was encountered during the asynchronous operation

1411  {
1412  _M_shared_future.get();
1413  }
std::shared_future< void > _M_shared_future
Definition: amprt.h:1511
Concurrency::completion_future::operator std::shared_future< void > ( ) const
inline

Returns a std::shared_future<void> object corresponding to the associated asynchronous operation

Returns
A std::shared_future<void> object corresponding to the associated asynchronous operation
1475  {
1476  return _M_shared_future;
1477  }
std::shared_future< void > _M_shared_future
Definition: amprt.h:1511
completion_future& Concurrency::completion_future::operator= ( const completion_future _Other)
inline

Copy assignment operator

1383  {
1384  if (this != &_Other) {
1385  _M_shared_future = _Other._M_shared_future;
1386  _M_task = _Other._M_task;
1387  }
1388 
1389  return (*this);
1390  }
std::shared_future< void > _M_shared_future
Definition: amprt.h:1511
concurrency::task< void > _M_task
Definition: amprt.h:1512
completion_future& Concurrency::completion_future::operator= ( completion_future &&  _Other)
inline

Move assignment operator

1396  {
1397  if (this != &_Other) {
1398  _M_shared_future = std::move(_Other._M_shared_future);
1399  _M_task = std::move(_Other._M_task);
1400  }
1401 
1402  return (*this);
1403  }
std::shared_future< void > _M_shared_future
Definition: amprt.h:1511
_OutIt move(_InIt _First, _InIt _Last, _OutIt _Dest)
Definition: xutility:2447
concurrency::task< void > _M_task
Definition: amprt.h:1512
template<typename _Functor >
void Concurrency::completion_future::then ( const _Functor &  _Func) const
inline

Chains a callback Functor to the completion_future to be executed when the associated asynchronous operation finishes execution

1485  {
1486  this->to_task().then(_Func);
1487  }
concurrency::task< void > to_task() const
Returns a concurrency::task object corresponding to the associated asynchronous operation ...
Definition: amprt.h:1497
concurrency::task<void> Concurrency::completion_future::to_task ( ) const
inline

Returns a concurrency::task<void> object corresponding to the associated asynchronous operation

Returns
A concurrency::task<void> object corresponding to the associated asynchronous operation
1498  {
1499  return _M_task;
1500  }
concurrency::task< void > _M_task
Definition: amprt.h:1512
bool Concurrency::completion_future::valid ( ) const
inline

Returns true if the object is associated with an asynchronous operation

Returns
true if the object is associated with an asynchronous operation and false otherwise
1424  {
1425  return _M_shared_future.valid();
1426  }
std::shared_future< void > _M_shared_future
Definition: amprt.h:1511
void Concurrency::completion_future::wait ( ) const
inline

Blocks until the associated asynchronous operation completes

1432  {
1433  _M_shared_future.wait();
1434  }
std::shared_future< void > _M_shared_future
Definition: amprt.h:1511
template<class _Rep , class _Period >
std::future_status Concurrency::completion_future::wait_for ( const std::chrono::duration< _Rep, _Period > &  _Rel_time) const
inline

Blocks until the associated asynchronous operation completes or _Rel_time has elapsed

Returns
1447  {
1448  return _M_shared_future.wait_for(_Rel_time);
1449  }
std::shared_future< void > _M_shared_future
Definition: amprt.h:1511
template<class _Clock , class _Duration >
std::future_status Concurrency::completion_future::wait_until ( const std::chrono::time_point< _Clock, _Duration > &  _Abs_time) const
inline

Blocks until the associated asynchronous operation completes or until the current time exceeds _Abs_time

Returns
1462  {
1463  return _M_shared_future.wait_until(_Abs_time);
1464  }
std::shared_future< void > _M_shared_future
Definition: amprt.h:1511

Friends And Related Function Documentation

friend class details::_Amp_runtime_trace
friend

Member Data Documentation

std::shared_future<void> Concurrency::completion_future::_M_shared_future
private
concurrency::task<void> Concurrency::completion_future::_M_task
private

The documentation for this class was generated from the following file: