diff options
author | Steven Shaw <steshaw@apache.org> | 2006-11-29 05:51:43 +0000 |
---|---|---|
committer | Steven Shaw <steshaw@apache.org> | 2006-11-29 05:51:43 +0000 |
commit | 1df5c37bfa8fe1ec20e41dfd2bb06bc10a790917 (patch) | |
tree | 8012603b18bae10e2c781debf36a5cd9b7e89bb6 /dotnet/Qpid.Client/Client/AMQConnection.cs | |
parent | 74abf7b06d6d3d4d291f87d750500ceded74dd1b (diff) | |
download | qpid-python-1df5c37bfa8fe1ec20e41dfd2bb06bc10a790917.tar.gz |
QPID-137. First stab at porting enough to get AutoAcknowledge mode working.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@480423 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dotnet/Qpid.Client/Client/AMQConnection.cs')
-rw-r--r-- | dotnet/Qpid.Client/Client/AMQConnection.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dotnet/Qpid.Client/Client/AMQConnection.cs b/dotnet/Qpid.Client/Client/AMQConnection.cs index a19b46c40a..5c0537429e 100644 --- a/dotnet/Qpid.Client/Client/AMQConnection.cs +++ b/dotnet/Qpid.Client/Client/AMQConnection.cs @@ -265,11 +265,11 @@ namespace Qpid.Client int _prefetch; AMQConnection _connection; - public CreateChannelFailoverSupport(AMQConnection connection, bool transacted, AcknowledgeMode acknowledgementMode, int prefetch) + public CreateChannelFailoverSupport(AMQConnection connection, bool transacted, AcknowledgeMode acknowledgeMode, int prefetch) { _connection = connection; _transacted = transacted; - _acknowledgeMode = acknowledgementMode; + _acknowledgeMode = acknowledgeMode; _prefetch = prefetch; } |