示例#1
0
        public void flushAsyncBatchRequests(CommunicatorFlushBatch outAsync)
        {
            List <Ice.ObjectAdapterI> adapters;

            lock (this)
            {
                adapters = new List <Ice.ObjectAdapterI>(_adapters);
            }

            foreach (Ice.ObjectAdapterI adapter in adapters)
            {
                adapter.flushAsyncBatchRequests(outAsync);
            }
        }
示例#2
0
 public FlushBatch(CommunicatorFlushBatch outAsync) :
     base(outAsync.getCommunicator(), outAsync.instance_, outAsync.getOperation(), null)
 {
     _outAsync = outAsync;
 }