Example #1
0
 public bool flushAsyncBatchRequests(BatchOutgoingAsync @out, out Ice.AsyncCallback sentCallback)
 {
     _m.Lock();
     try
     {
         if (!initialized())
         {
             _requests.AddLast(new Request(@out));
             sentCallback = null;
             return(false);
         }
     }
     finally
     {
         _m.Unlock();
     }
     return(_connection.flushAsyncBatchRequests(@out, out sentCallback));
 }
Example #2
0
 internal Request(BatchOutgoingAsync @out)
 {
     this.batchOut = @out;
 }
Example #3
0
 public bool flushAsyncBatchRequests(BatchOutgoingAsync @out, out Ice.AsyncCallback sentCallback)
 {
     _m.Lock();
     try
     {
         if(!initialized())
         {
             _requests.AddLast(new Request(@out));
             sentCallback = null;
             return false;
         }
     }
     finally
     {
         _m.Unlock();
     }
     return _connection.flushAsyncBatchRequests(@out, out sentCallback);
 }
Example #4
0
 internal Request(BatchOutgoingAsync @out)
 {
     this.batchOut = @out;
 }
 public bool flushAsyncBatchRequests(BatchOutgoingAsync @out, out Ice.AsyncCallback sentCallback)
 {
     return _connection.flushAsyncBatchRequests(@out, out sentCallback);
 }
Example #6
0
 public bool flushAsyncBatchRequests(BatchOutgoingAsync @out, out Ice.AsyncCallback sentCallback)
 {
     return(_connection.flushAsyncBatchRequests(@out, out sentCallback));
 }