Пример #1
0
 /// <inheritdoc/>
 public async Task WriteExceptionAsync(ChangeFeedEntry changeFeedEntry, Exception exceptionToStore, ErrorType errorType, CancellationToken cancellationToken = default)
 {
     await _store.StoreExceptionToTable(changeFeedEntry, exceptionToStore, errorType, cancellationToken);
 }
Пример #2
0
 /// <inheritdoc/>
 public async void StoreException(string studyUid, string seriesUid, string instanceUid, long changeFeedSequence, Exception exceptionToStore, ErrorType errorType, CancellationToken cancellationToken = default)
 {
     await _store.StoreExceptionToTable(studyUid, seriesUid, instanceUid, changeFeedSequence, exceptionToStore, errorType, cancellationToken);
 }