Skip to content

Commit edd5f06

Browse files
r-plusfreak4pc
authored andcommittedJul 17, 2021
fix type for optional publisher
1 parent 124f036 commit edd5f06

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
 

‎Data/core_components.csv

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ConnectableObservableType,ConnectablePublisher,
88
Disposable,Cancellable,
99
DisposeBag,A collection of AnyCancellables,"Call anyCancellable.store(in: &collection), where collection can be an array, a set, or any other RangeReplaceableCollection"
1010
Driver,ObservableObject,"Both guarantee no failure, but Driver guarantees delivery on Main Thread. In Combine, SwiftUI recreates the entire view hierarachy on the Main Thread, instead."
11-
Maybe,Publishers.Optional,
11+
Maybe,Optional.Publisher,
1212
Observable,Publisher,
1313
Observer,Subscriber,
1414
PublishRelay,❌,"Simple wrapper around PublishSubject, could be easily recreated in Combine"

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ It's based on the following blog post: [https://medium.com/gett-engineering/rxsw
2828
| Disposable | Cancellable | |
2929
| DisposeBag | A collection of AnyCancellables | Call anyCancellable.store(in: &collection), where collection can be an array, a set, or any other RangeReplaceableCollection |
3030
| Driver | ObservableObject | Both guarantee no failure, but Driver guarantees delivery on Main Thread. In Combine, SwiftUI recreates the entire view hierarachy on the Main Thread, instead. |
31-
| Maybe | Publishers.Optional | |
31+
| Maybe | Optional.Publisher | |
3232
| Observable | Publisher | |
3333
| Observer | Subscriber | |
3434
| PublishRelay || Simple wrapper around PublishSubject, could be easily recreated in Combine |

‎Resources/core_components.jpg

-180 Bytes
Loading

0 commit comments

Comments
 (0)
Failed to load comments.