Write Scheduled Endpoint

Requires: Base Development System

Writes an element to a Messenger channel at a scheduled time. The endpoint waits until the scheduled time and continues waiting if the channel is full at the scheduled time.

You can drop this endpoint on the block diagram by right-clicking a terminal or a wire and selecting Create»Channel Writer»Messenger»Write Scheduled.

Details  

scheduled time specifies the time when the endpoint should write data to the channel.
wait for ack specifies whether this endpoint waits until a reader endpoint acknowledges receiving the message before writing the next element. The default is FALSE.
element specifies the data to write to the channel.
size specifies the maximum number of elements that can be buffered in the channel. The default is unlimited. The channel size is initialized on the first call to the writer endpoint, after which the endpoint ignores the size input.
actual time returns the actual time when the endpoint wrote data to the channel.
channel is the channel wire that connects this endpoint to a reader endpoint.
id returns an integer that identifies this message within the channel. Other endpoints use this integer to cancel or acknowledge the message within the channel.

Write Scheduled Details

Related Information

Read Scheduled