Creating this fresh topic to catch any typos and bugs in the 1st Edition of Combine: Asynchronous Programming with Swift (v1.0.3)
The old topic can be read here: Combine: Asynchronous Programming with Swift - kodeco.com Forums
Creating this fresh topic to catch any typos and bugs in the 1st Edition of Combine: Asynchronous Programming with Swift (v1.0.3)
The old topic can be read here: Combine: Asynchronous Programming with Swift - kodeco.com Forums
I read Chapter 3 and found it strange that after the replaceNil
operator I had to do map with force unwrapping.
It turned out that this is because replaceNil
has two implementations for Publishers.Sequence
.
_ = Just<Int?>(1)
.replaceNil(with: 2) // Publishers.Map<Just<Int?>, T>
.sink(receiveValue: { (value: Int) in
print(value)
})
_ = [1, nil, 3]
.publisher
.replaceNil(with: 2) // Publishers.Sequence<[Publishers.Sequence<Elements, Failure>.Output], Failure>
.sink(receiveValue: { (value: Int?) in
print(value)
})
_ = [1, nil, 3]
.publisher
.replaceNil(with: 2) // Publishers.Map<Publishers.Sequence<[Int?], Never>, T>
.sink(receiveValue: { (value: Int) in
print(value)
})
Hi, @sever7! Iâm reaching out to the team to get a response for you. Thanks for being a reader. Hold tight!
Best,
Manda Frederick
Managing Editor, Razeware
Hey @sever7
Iâm a bit confused about the question. I think the confusing thing in that chapter is the diagram.
When you do Publisher<Int?>.replaceNil(with: 1)
youâll get a Publisher<Int>
, and not Publisher<Int?>
.
Basically it means that in this diagram, youâll want to see 1, 2, 3 in the output row:
Definitely something weâll address. Does that answer your question?
When using a Sequence publisher (e.g. [1, nil, 3].publiser.replaceNil(with: 2)
), it does seem like you get back an Optional, but this seems like a wrong behavior (or possibly even a bug). Iâll file a feedback/question regarding this with the Swift compiler team itself to get some clarification.
Thank you!
Shai.
Hello @freak4pc
Thank you for the detailed answer
I was confused by the fact that the book said that Publishers.Sequence<[Int?], Never>
the replaceNil
operator will send an Optional<Int>
.
But I found that Publishers.Sequence<[Int?], Never>
there are two replaceNil
methods and one of them just sends the unwrapped Int
.
The correct operator can be called by specifying the expected type .sink(receiveValue: {(value: Int) in }
_ = [1, nil, 3]
.publisher
.replaceNil(with: 2) // Publishers.Map<Publishers.Sequence<[Int?], Never>, T>
.sink(receiveValue: { (value: Int) in
print(value)
})
This is exactly what Iâm saying - that basically that makes no sense, and seems like a bug in Combine. If I do replaceNil and still get an optional value, I didnât do much in regards to the value guarantees.
@freak4pc thanks for the answer
Minor: V1.0.3 Chapter 15, Page 293 â RenderView
â ReaderView
.
Full sentence: âRemember, adding the keyword to the list here will update the settings model object and in turn, will update the reader view model and refresh RenderView as well.â
On Chapter 3, page 80, for the flatMap
section
Shouldnât the correct output be like the following?
Hi, I'm Charlotte!
Hi, I'm James!
Chapter 8: âUpdating the UI after the publisher completesâ
In this section, code is added to update the header when the newPhotos
stream completes, but there are no instructions to add trigger this event and the Starter project does not contain it either.
The fix is to add
selectedPhotosSubject.send(completion: .finished)
On the viewWillDisappear
method of the PhotosViewController
,
Chapter 4, near the end, the diagram for prefix(untilOutputFrom:)
.
The green âisReadyâ dot should be between 2 and 3, in my opinion.
Chapter 4. Diagram for last(where:)
.
The output will only happen when the publisher completes, so it canât happen at the same time as drawn. See below how it should be fixed, IMO.
Great pieces of feedback, thanks Jacob ! @apparentsoft
Hi folks, hereâs what I got:
completion
event, I noticed what was going on by looking a the final
project, but I wouldnât have been able to do this on my own.DispatchTimer
, the markers are 5 and 6, but the text refers to them as 1 and 2receive(subscriber: S)
method, the markers are 7, 8 and 9, but the text refers to them as 1, 2 and 3Thanks,
Leo
In the Book Source Code and Forums section, the link to download the source code is broken when you click on it. If you copy the whole URL and paste it in the browser, it will 404 because there are encoded spaces (%20).
@mandafrederick could you have a look at the download links?
In Chapter 2: Publishers and Subscribers:
Subscribing with sink(_:_:)
we add the code to post and the notification and cancel the subscription. Later under Hello Cancellable
it says:Finish the Subscriber example from earlier by adding the following code:
And then has you add the same two lines as before.
"Dynamically adjusting Demand"
code:Most of this code is similar to example youâve previously worked on in this chapter
Bug: V1.0.3 Chapter 15, Page 285 timer feature fails to work in both my copy and the âfinishedâ project
Iâm guessing somethings changed on the iOS side. This book has been batting 1,000 so far and itâs hard for me to believe this didnât used to work.
My system info:
OS: 10.15.5 (19F96)
Xcode: Version 11.5 (11E608c)
iOS: 13.5
iOS Simulator: Version 11.5 (921.9.1) SimulatorKit 581.9.1 CoreSimulator 704.12.2
It fails in the simulator as well as on my phone for both my version and the âfinishedâ project version in Chapter 15.
Adding the âprint()â for tracing like soâŠ
@State var currentDate = Date()
private let timer = Timer.publish(every: 10, on: .main, in: .common)
.autoconnect()
.eraseToAnyPublisher()
.print("timer")
Shows the following output in Xcode:
timer: receive subscription: (Timer)
timer: request unlimited
timer: request unlimited
timer: receive cancel
timer: receive subscription: (Timer)
timer: request unlimited
timer: request unlimited
My âeducatedâ guess is you had your JSON âpollingâ the Hacker News server at one point and this worked. As soon as we get the JSON we close things down causing our timer to get a cancel message and it turns out the lights on us before we even walk into the room.
Just a guess.
It would be great to get feedback or details on how to fix this going forward. Thanks for a great book!
Cheers
Hi @cupofjoe - some of the underlying code in SwiftUI seems to have changed indeed recently. I had someone report a similar issue related to the timer in this chapter, have a look maybe itâs the same root cause? Errata for Combine: Asynchronous Programming with Swift 1st Edition - #67 by denisblondeau