123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Benchmarks.System.Interactive
- {
- /// <summary>
- /// Some helper extension methods to allow the same pattern to be used
- /// in both Rx and Ix benchmarks
- /// </summary>
- internal static class BenchmarkInterop
- {
- internal static void Subscribe<T>(this IEnumerable<T> enumerable, Action<T> onNext)
- {
- foreach (var v in enumerable)
- {
- onNext(v);
- }
- }
- internal static void Subscribe<T>(this IEnumerable<T> enumerable, Action<T> onNext, Action onCompleted)
- {
- foreach (var v in enumerable)
- {
- onNext(v);
- }
- onCompleted();
- }
- }
- }
|