Skip to content

Commit ce07971

Browse files
committed
#10 Further correction of Count fetcher cancellation
1 parent bbdc6dc commit ce07971

File tree

1 file changed

+36
-30
lines changed

1 file changed

+36
-30
lines changed

BFF.DataVirtualizingCollection/DataVirtualizingCollection/AsyncDataVirtualizingCollection.cs

+36-30
Original file line numberDiff line numberDiff line change
@@ -41,43 +41,49 @@ internal AsyncDataVirtualizingCollection(
4141

4242
_pageStorage = pageStoreFactory(0);
4343

44-
var cancellationDisposable = new CancellationDisposable();
45-
_pendingCountRequestCancellation.Disposable = cancellationDisposable;
46-
InitializationCompleted = ResetInner(cancellationDisposable.Token);
47-
48-
InitializationCompleted
49-
.ToObservable()
50-
.Merge(
51-
_resetSubject
52-
.SelectMany(async ct =>
53-
{
54-
await ResetInner(ct).ConfigureAwait(false);
55-
return Unit.Default;
56-
}))
57-
.Subscribe(_ => {});
44+
InitializationCompleted = _resetSubject.FirstAsync().ToTask();
45+
46+
_resetSubject
47+
.SelectMany(async ct =>
48+
{
49+
await ResetInner(ct).ConfigureAwait(false);
50+
return Unit.Default;
51+
})
52+
.Subscribe(_ => {})
53+
.CompositeDisposalWith(CompositeDisposable);
54+
55+
Reset();
5856
}
5957

6058
public override int Count => _count;
6159

6260
protected override T GetItemInner(int index) => _pageStorage[index];
6361

64-
private Task ResetInner(CancellationToken ct)
62+
private async Task ResetInner(CancellationToken ct)
6563
{
66-
return Observable.FromAsync(_countFetcher, _countBackgroundScheduler)
67-
.SelectMany(async count =>
68-
{
69-
_count = count;
70-
await _pageStorage.Reset(_count).ConfigureAwait(false);
71-
return Unit.Default;
72-
})
73-
.ObserveOn(_notificationScheduler)
74-
.Do(_ =>
75-
{
76-
OnPropertyChanged(nameof(Count));
77-
OnCollectionChangedReset();
78-
OnIndexerChanged();
79-
})
80-
.ToTask(ct);
64+
try
65+
{
66+
await Observable.FromAsync(_countFetcher, _countBackgroundScheduler)
67+
.SelectMany(async count =>
68+
{
69+
_count = count;
70+
await _pageStorage.Reset(_count).ConfigureAwait(false);
71+
return Unit.Default;
72+
})
73+
.ObserveOn(_notificationScheduler)
74+
.Do(_ =>
75+
{
76+
OnPropertyChanged(nameof(Count));
77+
OnCollectionChangedReset();
78+
OnIndexerChanged();
79+
})
80+
.ToTask(ct)
81+
.ConfigureAwait(false);
82+
}
83+
catch (OperationCanceledException)
84+
{
85+
// ignore cancellation from now on
86+
}
8187
}
8288

8389
public override void Reset()

0 commit comments

Comments
 (0)