agency::unsequenced_execution_policy Class Reference
  Encapsulates requirements for creating groups of unsequenced execution agents. More...
Inheritance diagram for agency::unsequenced_execution_policy:
  
 Additional Inherited Members | |
  Public Types inherited from agency::basic_execution_policy< unsequenced_agent, unsequenced_executor, unsequenced_execution_policy > | |
| using | execution_agent_type = unsequenced_agent | 
| The type of execution agent associated with this basic_execution_policy.  | |
| using | executor_type = unsequenced_executor | 
| The type of executor associated with this basic_execution_policy.  | |
| using | param_type = typename execution_agent_traits< execution_agent_type >::param_type | 
| The type of this execution policy's parameterization.  | |
  Public Member Functions inherited from agency::basic_execution_policy< unsequenced_agent, unsequenced_executor, unsequenced_execution_policy > | |
| basic_execution_policy ()=default | |
| The default constructor default constructs this execution policy's associated executor and parameterization.  | |
| basic_execution_policy (const param_type ¶m, const executor_type &executor=executor_type{}) | |
| This constructor constructs a new basic_execution_policy given a parameterization and executor.  More... | |
| const param_type & | param () const | 
| Returns this execution policy's parameterization.  | |
| executor_type & | executor () const | 
| Returns this execution policy's associated executor.  | |
| auto | on (const OtherExecutor &exec) const -> decltype(replace_executor(*this, exec)) | 
| Replaces this execution policy's executor with another.  More... | |
| see_below | operator() (Arg1 &&arg1, Args &&...args) const | 
| Reparameterizes this execution policy.  More... | |
Detailed Description
When used as a control structure parameter, unsequenced_execution_policy requires the creation of a group of execution agents which execute without any order.
The type of execution agent unsequenced_execution_policy induces is unsequenced_agent, and the type of its associated executor is unsequenced_executor.
- See also
 - Execution Policies
 - basic_execution_policy
 - vec
 - unsequenced_agent
 - unsequenced_executor
 - unsequenced_execution_tag
 
          
          
 Public Types inherited from