SPRNET-1154 - Update Apache.NMS library version

This commit is contained in:
markpollack
2009-01-21 16:39:59 +00:00
parent c1a84eba0b
commit a64569dd50
7 changed files with 19 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -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>

View File

@@ -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();