Exemplo n.º 1
0
 public async Task QueryScheduledWithoutDataAsync(Instant now, Func <IContentEntity, Task> callback)
 {
     using (Profiler.TraceMethod <MongoContentRepository>())
     {
         await contents.QueryScheduledWithoutDataAsync(now, callback);
     }
 }
Exemplo n.º 2
0
 public Task QueryScheduledWithoutDataAsync(Instant now, Func <IContentEntity, Task> callback)
 {
     return(collectionAll.QueryScheduledWithoutDataAsync(now, callback));
 }
Exemplo n.º 3
0
 public Task QueryScheduledWithoutDataAsync(Instant now, Func <IContentEntity, Task> callback,
                                            CancellationToken ct = default)
 {
     return(collectionAll.QueryScheduledWithoutDataAsync(now, callback, ct));
 }
Exemplo n.º 4
0
 public IAsyncEnumerable <IContentEntity> QueryScheduledWithoutDataAsync(Instant now,
                                                                         CancellationToken ct = default)
 {
     return(collectionAll.QueryScheduledWithoutDataAsync(now, ct));
 }