UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

Basic Combine Question: Catching Error in a Stream

Forums > Swift

Hey guys,

I would like to know how I can catch an error in a stream and stop the execution. Due to the fact that I did not find an answer, I assume I am taking a wrong approach here. I would appreciate any kind of feedback!

Here is my Code:

func fetchEntries() -> Future<[Entry],EntryGenerationError> {
    return Future { [weak self] promise in
        guard let strongSelf = self else {
            promise(.failure(.selfNotStrong))
            return
        }
        strongSelf.entityController.fetchAllEncodedEntries { encodedEntries in
            let publishersOfDecodedEntries = encodedEntries.map({ strongSelf.decodeEntry(entry: $0) })
            Publishers.MergeMany(publishersOfDecodedEntries)
                .catch({ err in
                    promise(.failure(err))
                    //FINISH HERE
                })
                .collect()
                .sink { encodedEntries in
                    ...
                    promise(.success(finalEntries))
                }
        }
    }
}

2      

With the caveat that I really haven't delved too deeply into Combine yet...

It's not intended for you to drop out of the pipeline from a .catch() operator. Instead, you substitute the failed Publisher with a new Publisher and pass that through the rest of the pipeline.

See:

Error handling in Combine explained with code examples

Understanding Combine

3      

Hacking with Swift is sponsored by Essential Developer

SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until April 28th.

Click to save your free spot now

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.