Code Monkey home page Code Monkey logo

Comments (4)

andrewtoth avatar andrewtoth commented on June 15, 2024
import Bolts

extension BFTaskCompletionSource {

    func setTask(task: BFTask) {
        if task.faulted {
            if task.error != nil {
                setError(task.error)
            } else {
                setException(task.exception)
            }
        } else if task.cancelled {
            cancel()
        } else {
            setResult(task.result)
        }
    }
}

from bolts-objc.

nlutsenko avatar nlutsenko commented on June 15, 2024

cc @grantland What do you think?
Using updateFromTask: on a BFTaskCompletionSource actually makes slightly more sense, since we already have a task aka getTask property on it.

from bolts-objc.

grantland avatar grantland commented on June 15, 2024

First, when do we really need to use this pattern, how often do we need to use this pattern, and is it really something we se other developers utilizing? I'm not quite convinced this needs to be pushed upstream.

from bolts-objc.

bob9630 avatar bob9630 commented on June 15, 2024

This pattern is necessary when interacting with libraries that aren't designed with Bolts in mind. For example, Let's say I have an initialization task, followed by a NetworkTask where I create an NSURLSessionDataTask which has a completionHandler that has a few of sub-tasks to run which should eventually hit a FinalTask which is in charge of handling errors generated in all tasks above it as well as handling the success case if everything goes as planed.

InitTask
NetworkTask
network-subtaskA
network-subtaskB
FinalTask

If I didn't have a NetworkTask which had it's own completionHandler outside the scope of Bolts, I could do this simply by returning a task chain in the NetworkTask in the continueWith block which intelligently would determine the if the result returned is a BFTask handle it one way, else wrap the result in a BFTask and handle it another way.

In short the request here is to have the same ability when setting the results of a completionSource as we do when returning results from a continueWith block.

from bolts-objc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.