Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/thread/packaged task"

From cppreference.com
< cpp‎ | thread
m (Shorten template names. Use {{lc}} where appropriate.)
m (Update links.)
Line 18: Line 18:
 
===Member functions===
 
===Member functions===
 
{{dsc begin}}
 
{{dsc begin}}
{{dsc inc | cpp/thread/packaged_task/dcl list constructor}}
+
{{dsc inc | cpp/thread/packaged_task/dsc constructor}}
{{dsc inc | cpp/thread/packaged_task/dcl list destructor}}
+
{{dsc inc | cpp/thread/packaged_task/dsc destructor}}
{{dsc inc | cpp/thread/packaged_task/dcl list operator{{=}}}}
+
{{dsc inc | cpp/thread/packaged_task/dsc operator{{=}}}}
{{dsc inc | cpp/thread/packaged_task/dcl list valid}}
+
{{dsc inc | cpp/thread/packaged_task/dsc valid}}
{{dsc inc | cpp/thread/packaged_task/dcl list swap}}
+
{{dsc inc | cpp/thread/packaged_task/dsc swap}}
  
 
{{dsc h2 | Getting the result}}
 
{{dsc h2 | Getting the result}}
{{dsc inc | cpp/thread/packaged_task/dcl list get_future}}
+
{{dsc inc | cpp/thread/packaged_task/dsc get_future}}
  
 
{{dsc h2 | Execution}}
 
{{dsc h2 | Execution}}
{{dsc inc | cpp/thread/packaged_task/dcl list operator()}}
+
{{dsc inc | cpp/thread/packaged_task/dsc operator()}}
{{dsc inc | cpp/thread/packaged_task/dcl list make_ready_at_thread_exit}}
+
{{dsc inc | cpp/thread/packaged_task/dsc make_ready_at_thread_exit}}
{{dsc inc | cpp/thread/packaged_task/dcl list reset}}
+
{{dsc inc | cpp/thread/packaged_task/dsc reset}}
 
{{dsc end}}
 
{{dsc end}}
  
 
===Non-member functions===
 
===Non-member functions===
 
{{dsc begin}}
 
{{dsc begin}}
{{dsc inc | cpp/thread/packaged_task/dcl list swap2}}
+
{{dsc inc | cpp/thread/packaged_task/dsc swap2}}
 
{{dsc end}}
 
{{dsc end}}
  
 
===Helper classes===
 
===Helper classes===
 
{{dsc begin}}
 
{{dsc begin}}
{{dsc inc | cpp/thread/packaged_task/dcl list uses_allocator}}
+
{{dsc inc | cpp/thread/packaged_task/dsc uses_allocator}}
 
{{dsc end}}
 
{{dsc end}}
  
Line 99: Line 99:
 
===See also===
 
===See also===
 
{{dsc begin}}
 
{{dsc begin}}
{{dsc inc | cpp/thread/dcl list future}}
+
{{dsc inc | cpp/thread/dsc future}}
 
{{dsc end}}
 
{{dsc end}}
  

Revision as of 22:28, 31 May 2013

 
 
Concurrency support library
Threads
(C++11)
(C++20)
this_thread namespace
(C++11)
(C++11)
(C++11)
Cooperative cancellation
Mutual exclusion
(C++11)
Generic lock management
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
Condition variables
(C++11)
Semaphores
Latches and Barriers
(C++20)
(C++20)
Futures
(C++11)
(C++11)
packaged_task
(C++11)
(C++11)
(C++11)
Safe Reclamation
(C++26)
Hazard Pointers
Atomic types
(C++11)
(C++20)
Initialization of atomic types
(C++11)(deprecated in C++20)
(C++11)(deprecated in C++20)
Memory ordering
Free functions for atomic operations
Free functions for atomic flags
 
 
Defined in header <future>
template< class > class packaged_task; //not defined
(1) (since C++11)
template< class R, class Args... >
class packaged_task<R(Args...)>;
(2) (since C++11)

The class template std::packaged_task wraps any callable target (function, lambda expression, bind expression, or another function object) so that it can be invoked asynchronously. Its return value or exception thrown is stored in a shared state which can be accessed through std::future objects.

Just like std::function, std::packaged_task is a polymorphic, allocator-aware container: the stored callable target may be allocated on heap or with a provided allocator.

Contents

Member functions

constructs the task object
(public member function) [edit]
destructs the task object
(public member function) [edit]
moves the task object
(public member function) [edit]
checks if the task object has a valid function
(public member function) [edit]
swaps two task objects
(public member function) [edit]
Getting the result
returns a std::future associated with the promised result
(public member function) [edit]
Execution
executes the function
(public member function) [edit]
executes the function ensuring that the result is ready only once the current thread exits
(public member function) [edit]
resets the state abandoning any stored results of previous executions
(public member function) [edit]

Non-member functions

specializes the std::swap algorithm
(function template) [edit]

Helper classes

specializes the std::uses_allocator type trait
(class template specialization) [edit]

Example

#include <iostream>
#include <cmath>
#include <thread>
#include <future>
#include <functional>
 
void task_lambda()
{
    std::packaged_task<int(int,int)> task([](int a, int b) {
        return std::pow(a, b); 
    });
    std::future<int> result = task.get_future();
 
    task(2, 9);
 
    std::cout << "task_lambda:\t" << result.get() << '\n';
}
 
void task_bind()
{
    std::packaged_task<int()> task(std::bind(std::pow, 2, 11));
    std::future<int> result = task.get_future();
 
    task();
 
    std::cout << "task_bind:\t" << result.get() << '\n';
}
 
void task_thread()
{
    std::packaged_task<int(int,int)> task(std::pow);
    std::future<int> result = task.get_future();
 
    std::thread task_td(std::move(task), 2, 10);
    task_td.join();
 
    std::cout << "task_thread:\t" << result.get() << '\n';
}
 
int main()
{
    task_lambda();
    task_bind();
    task_thread();
}

Output:

task_lambda: 512
task_bind:   2048
task_thread: 1024

See also

(C++11)
waits for a value that is set asynchronously
(class template) [edit]