Example #1
0
        private static Func <int> DeepIncrementalAlt(ISystemAllocation allocation)
        {
            var query    = DeepContainerAnalysis.GetFaultyContainers2(allocation);
            var queryInc = Observable.Expression(() => query.Count());

            return(() => queryInc.Value);
        }
Example #2
0
        private static Func <int> DeepBatch(ISystemAllocation allocation)
        {
            var query = DeepContainerAnalysis.GetFaultyContainers(allocation);

            return(() => query.Count());
        }