Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Constructs a multitype_join messaging block.
explicit multitype_join(
   _Type _Tuple
);
multitype_join(
   Scheduler& _PScheduler,
   _Type _Tuple
);
multitype_join(
   ScheduleGroup& _PScheduleGroup,
   _Type _Tuple
);
multitype_join(
   multitype_join && _Join
);
Parameters
- _Tuple 
 A tuple of sources for this multitype_join messaging block.
- _PScheduler 
 The Scheduler object within which the propagation task for the multitype_join messaging block is scheduled.
- _PScheduleGroup 
 The ScheduleGroup object within which the propagation task for the multitype_join messaging block is scheduled. The Scheduler object used is implied by the schedule group.
- _Join 
 A multitype_join messaging block to copy from. Note that the original object is orphaned, making this a move constructor.
Remarks
The runtime uses the default scheduler if you do not specify the _PScheduler or _PScheduleGroup parameters.
Move construction is not performed under a lock, which means that it is up to the user to make sure that there are no light-weight tasks in flight at the time of moving. Otherwise, numerous races can occur, leading to exceptions or inconsistent state.
Requirements
Header: agents.h
Namespace: concurrency