Esempio n. 1
0
 internal OutgoingMessage(IceInternal.OutgoingAsyncBase outAsync, OutputStream stream,
                          bool compress, int requestId)
 {
     this.stream = stream;
     this.compress = compress;
     this.outAsync = outAsync;
     this.requestId = requestId;
     this.isSent = false;
 }
Esempio n. 2
0
 internal void canceled()
 {
     Debug.Assert(outAsync != null);
     outAsync = null;
 }
Esempio n. 3
0
 public void end_flushBatchRequests(AsyncResult result)
 {
     IceInternal.OutgoingAsyncBase outAsync = (IceInternal.OutgoingAsyncBase)result;
     IceInternal.OutgoingAsyncBase.check__(outAsync, this, __flushBatchRequests_name);
     outAsync.wait__();
 }