SPRNET-1154 - Update Apache.NMS library version
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -499,6 +499,16 @@ namespace Spring.Messaging.Nms.Connections
|
||||
return target.CreateTemporaryTopic();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Deletes the destination.
|
||||
/// </summary>
|
||||
/// <param name="destination">The destination.</param>
|
||||
public void DeleteDestination(IDestination destination)
|
||||
{
|
||||
this.transactionOpen = true;
|
||||
target.DeleteDestination(destination);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Creates the message.
|
||||
/// </summary>
|
||||
|
||||
@@ -139,6 +139,15 @@ namespace Spring.Messaging.Nms.Connections
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
#region ISession Members
|
||||
|
||||
public void DeleteDestination(IDestination destination)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
public IMessage CreateMessage()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
|
||||
Reference in New Issue
Block a user