LinkReadyToSend Event

Fires when a sender link is ready to send messages.

Syntax

public event OnLinkReadyToSendHandler OnLinkReadyToSend;

public delegate void OnLinkReadyToSendHandler(object sender, AmqpLinkReadyToSendEventArgs e);

public class AmqpLinkReadyToSendEventArgs : EventArgs {
  public string LinkName { get; }
  public int LinkIndex { get; }
}
Public Event OnLinkReadyToSend As OnLinkReadyToSendHandler

Public Delegate Sub OnLinkReadyToSendHandler(sender As Object, e As AmqpLinkReadyToSendEventArgs)

Public Class AmqpLinkReadyToSendEventArgs Inherits EventArgs
  Public ReadOnly Property LinkName As String
  Public ReadOnly Property LinkIndex As Integer
End Class

Remarks

This event fires when a sender link is ready to send messages.

LinkName is the name of the sender link.

LinkIndex is the index of the sender link in the Links collection.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks MQ 2020 .NET Edition - Version 20.0 [Build 8155]