Skip to main content

OnAvbSend

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

  • void OnAvbSend(dword talkerHandle, dword result, int buffer[], dword length); // form 1
  • void OnAvbSend(dword talkerHandle, dword result, long buffer[], dword length); // form 2
  • void OnAvbSend(dword talkerHandle, dword result, qword buffer[], dword length); // form 3
  • void OnAvbSend(dword talkerHandle, dword result, byte buffer[], dword length); // form 4

Description

This callback is dispatched when an asynchronous send operation on a Talker completes.

Parameters

  • talkerHandle: The Talker handle.
  • result: The specific result code of the operation. If the operation completed successfully the value is zero. Otherwise the value is non-zero.
  • buffer: The buffer provided with the send operation.
  • size: The number of elements sent.

Return Values

Example

See Also