in src/main/csharp/MessageProducer.cs [92:108]
public void Send(Apache.NMS.IMessage message, MsgDeliveryMode deliveryMode, MsgPriority priority, TimeSpan timeToLive)
{
Apache.NMS.EMS.Message msg = GetEMSMessage(message);
try
{
this.tibcoMessageProducer.Send(
msg.tibcoMessage,
EMSConvert.ToMessageDeliveryMode(deliveryMode),
(int) priority,
(long) timeToLive.TotalMilliseconds);
}
catch(Exception ex)
{
ExceptionUtil.WrapAndThrowNMSException(ex);
}
}