public async Task QueryScheduledWithoutDataAsync(Instant now, Func <IContentEntity, Task> callback) { using (Profiler.TraceMethod <MongoContentRepository>()) { await contents.QueryScheduledWithoutDataAsync(now, callback); } }
public Task QueryScheduledWithoutDataAsync(Instant now, Func <IContentEntity, Task> callback) { return(collectionAll.QueryScheduledWithoutDataAsync(now, callback)); }
public Task QueryScheduledWithoutDataAsync(Instant now, Func <IContentEntity, Task> callback, CancellationToken ct = default) { return(collectionAll.QueryScheduledWithoutDataAsync(now, callback, ct)); }
public IAsyncEnumerable <IContentEntity> QueryScheduledWithoutDataAsync(Instant now, CancellationToken ct = default) { return(collectionAll.QueryScheduledWithoutDataAsync(now, ct)); }