Does Pioneer support RxSwift and the GraphQLRxSwift? #102
Answered
by
d-exclaimation
d-exclaimation
asked this question in
Q&A
-
Does Pioneer support RxSwift and the GraphQLRxSwift? |
Beta Was this translation helpful? Give feedback.
Answered by
d-exclaimation
Nov 13, 2022
Replies: 1 comment
-
Not directly support RxSwift. However since RxSwift 6.5.0, RxSwift's Observables can be converted into an However, Pioneer is not compatible with GraphQLRxSwift, and all RxSwift's observable must be converted into an |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
d-exclaimation
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not directly support RxSwift.
However since RxSwift 6.5.0, RxSwift's Observables can be converted into an
AsyncThrowingStream
(which is compatible withAsyncEventStream
), which does mean it can be used with Pioneer's AsyncEventStream.However, Pioneer is not compatible with GraphQLRxSwift, and all RxSwift's observable must be converted into an
AsyncSequence
.