Beispiel #1
0
 public async Task QueryScheduledWithoutDataAsync(Instant now, Func <IContentEntity, Task> callback)
 {
     using (Profiler.TraceMethod <MongoContentRepository>())
     {
         await contents.QueryScheduledWithoutDataAsync(now, callback);
     }
 }
Beispiel #2
0
 public Task QueryScheduledWithoutDataAsync(Instant now, Func <IContentEntity, Task> callback)
 {
     return(collectionAll.QueryScheduledWithoutDataAsync(now, callback));
 }
Beispiel #3
0
 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));
 }