@@ -41,43 +41,49 @@ internal AsyncDataVirtualizingCollection(
41
41
42
42
_pageStorage = pageStoreFactory ( 0 ) ;
43
43
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 ( ) ;
58
56
}
59
57
60
58
public override int Count => _count ;
61
59
62
60
protected override T GetItemInner ( int index ) => _pageStorage [ index ] ;
63
61
64
- private Task ResetInner ( CancellationToken ct )
62
+ private async Task ResetInner ( CancellationToken ct )
65
63
{
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
+ }
81
87
}
82
88
83
89
public override void Reset ( )
0 commit comments