public static void Dump <K, T>(this IEnumerable <KeyValuePair <K, T> > enumerable, IKeyedStreamSink <K, T> sink, Func <T, DateTimeOffset> getMessageDateTime, CancellationToken cancellationToken) { sink.DumpWithKey(enumerable, getMessageDateTime, cancellationToken); }
public static void Dump <K, T>(this IEnumerable <KeyValuePair <K, T> > enumerable, IKeyedStreamSink <K, T> sink, CancellationToken cancellationToken) { sink.DumpWithKey(enumerable, cancellationToken); }