tibrvTransport_Sendv()

Function

Declaration

tibrv_status tibrvTransport_Sendv(
    tibrvTransport      transport,
    tibrvMsg*           messageVector,
    tibrv_u32           length);

Purpose

Send a vector of messages.

Remarks

This function sends a group of messages with one call. In most applications this call is more efficient than a series of send calls on individual messages.

Note 

messageVector is an an array of tibrvMsg objects. To avoid array out-of-bounds errors, be careful to pass an appropriate length (that is, a length that is no larger than the number of tibrvMsg objects in the array).

Parameter

Description

transport

Send the messages on this transport.

messageVector

Send these messages.

length

Number of messages in the vector.

See Also

tibrvMsg

tibrvMsg_Create()

tibrvTransport

tibrvTransport_Send()