misc updates...fix build..

This commit is contained in:
markpollack
2008-10-14 06:35:24 +00:00
parent 373e380aee
commit f6eda4629f
3 changed files with 13 additions and 1 deletions

View File

@@ -658,7 +658,7 @@
<call target="build-all-function"/>
<nant buildfile="./doc/reference" target="all"/>
<call target="docs"/>
<call target="package-release-files"/>

View File

@@ -43,6 +43,12 @@ namespace Spring.Messaging.Nms.Connections
closeCount++;
}
public TimeSpan RequestTimeout
{
get { throw new NotImplementedException(); }
set { throw new NotImplementedException(); }
}
public AcknowledgementMode AcknowledgementMode
{
get { return AcknowledgementMode.ClientAcknowledge; }

View File

@@ -189,6 +189,12 @@ namespace Spring.Messaging.Nms.Connections
}
public TimeSpan RequestTimeout
{
get { throw new NotImplementedException(); }
set { throw new NotImplementedException(); }
}
public bool Transacted
{
get { return true; }