コード例 #1
0
ファイル: ConnectionI.cs プロジェクト: Crysty-Yui/ice
 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;
 }
コード例 #2
0
ファイル: ConnectionI.cs プロジェクト: Crysty-Yui/ice
 internal void canceled()
 {
     Debug.Assert(outAsync != null);
     outAsync = null;
 }
コード例 #3
0
ファイル: CommunicatorI.cs プロジェクト: stick/zeroc-ice
 public void end_flushBatchRequests(AsyncResult result)
 {
     IceInternal.OutgoingAsyncBase outAsync = (IceInternal.OutgoingAsyncBase)result;
     IceInternal.OutgoingAsyncBase.check__(outAsync, this, __flushBatchRequests_name);
     outAsync.wait__();
 }