Joseph Heck
Joseph Heck
Thanks Steve, I knew about the warnings, as I was abusing a specific section where I made my own image and wanted to try using the callout format used in...
These are both good ideas - I gave up on the automated marble diagrams after trying them, and was hand-creating the diagrams that I used in this content using OmniGraffle...
- [Async Algorithms Merge](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Merge.md) - [Async Algorithms Zip](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Zip.md)
in progress - repository replicated (NOT renamed, so that I could manage and keep the current pages active while I do this...) to https://github.com/heckj/UsingCombine Also, relates directly to https://github.com/heckj/UsingCombine/issues/1 Issue...
WIP PR #200
The few notes in the docs from: - https://developer.apple.com/documentation/combine/receiving_and_handling_events_with_combine 1) implement/conform to the [Subscriber](https://developer.apple.com/documentation/combine/subscriber) protocol 2) handling `cancel()` (part of Subscriber protocol): If you create a custom Subscriber, the publisher...
A bit of back and forth on StackOverflow related to this topic: https://stackoverflow.com/questions/60579822/timing-of-values-in-combine-frameworks-append-operator
That's a really good question, to which I don't have a definitive answer - and didn't feel like I could assert one without better internal knowledge. To my experiments, the...
@mycroftcanner totally great by me! i love the feedback and external view of confusing points - both with my writing and how people are seeing combine (as an avenue to...
@marktrobinson I've not found a way to test it in either direction, so I'm sticking with the "better safe than sorry" and using only serial queues myself. In my attempts...