ITarget Class
The ITarget class is the interface for all target blocks. Target blocks consume messages offered to them by ISource blocks.
template< class _Type > class ITarget;
|
Name |
Description |
|---|---|
|
When overridden in a derived class, asynchronously passes a message from a source block to this target block. |
|
|
When overridden in a derived class, synchronously passes a message to the target block. |
|
|
When overridden in a derived class, returns true or false depending on whether the message block accepts messages offered by a source that is not linked to it. If the overridden method returns true, the target cannot postpone an offered message, as consumption of a postponed message at a later time requires the source to be identified in its sourse link registry. |
For more information, see Asynchronous Message Blocks.