예제 #1
0
파일: OutgoingAsync.cs 프로젝트: wandec/ice
 internal override void InvokeCollocated(CollocatedRequestHandler handler)
 {
     // The stream cannot be cached if the proxy is not a twoway or there is an invocation timeout set.
     if (IsOneway || Proxy.IceReference.InvocationTimeout != -1)
     {
         // Disable caching by marking the streams as cached!
         State |= StateCachedBuffers;
     }
     handler.InvokeAsyncRequest(this, Synchronous);
 }
예제 #2
0
파일: OutgoingAsync.cs 프로젝트: wandec/ice
 internal abstract void InvokeCollocated(CollocatedRequestHandler handler);