Esempio n. 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));
 }
Esempio n. 2
0
 internal Request(BatchOutgoingAsync @out)
 {
     this.batchOut = @out;
 }
Esempio n. 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);
 }
Esempio n. 4
0
 internal Request(BatchOutgoingAsync @out)
 {
     this.batchOut = @out;
 }
 public bool flushAsyncBatchRequests(BatchOutgoingAsync @out, out Ice.AsyncCallback sentCallback)
 {
     return _connection.flushAsyncBatchRequests(@out, out sentCallback);
 }
Esempio n. 6
0
 public bool flushAsyncBatchRequests(BatchOutgoingAsync @out, out Ice.AsyncCallback sentCallback)
 {
     return(_connection.flushAsyncBatchRequests(@out, out sentCallback));
 }