Skip to content

Commit 30f26f7

Browse files
committed
remove IModel.ChannelFlow
1 parent 6ac64af commit 30f26f7

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

projects/client/RabbitMQ.Client/src/client/api/IModel.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -154,12 +154,6 @@ public interface IModel: IDisposable
154154
[AmqpUnsupported("RabbitMQ.Client.Framing.v0_9_1")]
155155
IStreamProperties CreateStreamProperties();
156156

157-
///<summary>(Spec method) Channel flow control functionality.</summary>
158-
///<remarks>
159-
///</remarks>
160-
[return: AmqpFieldMapping(null, "active")]
161-
void ChannelFlow(bool active);
162-
163157
///<summary>(Spec method) Declare an exchange.</summary>
164158
///<remarks>
165159
///The exchange is declared non-passive and non-internal.

projects/client/RabbitMQ.Client/src/client/impl/ModelBase.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -779,8 +779,6 @@ public void FinishClose()
779779
public abstract IFileProperties CreateFileProperties();
780780
public abstract IStreamProperties CreateStreamProperties();
781781

782-
public abstract void ChannelFlow(bool active);
783-
784782
public void ExchangeDeclare(string exchange, string type, bool durable, bool autoDelete, IDictionary<string, object> arguments)
785783
{
786784
_Private_ExchangeDeclare(exchange, type, false, durable, autoDelete, false, false, arguments);

0 commit comments

Comments
 (0)