diff options
Diffstat (limited to 'csharp/src/Ice/ObjectAdapterI.cs')
-rw-r--r-- | csharp/src/Ice/ObjectAdapterI.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csharp/src/Ice/ObjectAdapterI.cs b/csharp/src/Ice/ObjectAdapterI.cs index 5929b46fd3c..01892c30401 100644 --- a/csharp/src/Ice/ObjectAdapterI.cs +++ b/csharp/src/Ice/ObjectAdapterI.cs @@ -688,7 +688,7 @@ namespace Ice } } - public void flushAsyncBatchRequests(CommunicatorFlushBatchAsync outAsync) + public void flushAsyncBatchRequests(Ice.CompressBatch compressBatch, CommunicatorFlushBatchAsync outAsync) { List<IncomingConnectionFactory> f; lock(this) @@ -698,7 +698,7 @@ namespace Ice foreach(IncomingConnectionFactory factory in f) { - factory.flushAsyncBatchRequests(outAsync); + factory.flushAsyncBatchRequests(compressBatch, outAsync); } } |