Git Product home page Git Product logo

Comments (3)

shoumikhin avatar shoumikhin commented on April 28, 2024

What would be the role of the queue in that case? What kind of work is going to be dispatched on it?

from promises.

 avatar commented on April 28, 2024

In that queue will be executed all Then, Always, Catch, Then ... closures

from promises.

shoumikhin avatar shoumikhin commented on April 28, 2024

So, if I understand that correctly, you suggest passing a queue into the promise constructor, so that any consumer of that promise would automatically get their subscriber methods (akin then, catch, etc.) be dispatched on that queue by default?

I guess the tricky part is that the consumers of your promise (e.g., if it were provided by some library API) wouldn't be aware that then they chain on w/o specifying any queue explicitly will be dispatched on your private queue the promise was created with, instead of the main.

Imagine:

func foo() -> Promise<Void> {
  let promise = Promise<Void>.pending(queue: queue)
  promise.fulfill(())
  return promise
}

func bar() {
  foo().then {
    // Present UIViewController.
  }
}

bar() has no idea the promise it gets from foo() is going to be dispatched on a private queue, so it can assume it's the main queue, as always, and try to do some UI interactions.

The idea of the methods like then, catch, etc. is to observe promise state changes. And such observations can be dispatched on any queue specified. In other words, it's up to subscribers which queue they want to use:

foo().then(on: queue) {
    // Do something on queue.
}

foo().then {  // Equivalent to .then(on: .main)
    // Do something on the main queue.
}

If, for some reason (like you're using Promises on a server side and need to park the main thread in a custom runloop mechanism), you want to use some other queue by default rather than the main for all promise APIs, do the following:

DispatchQueue.promises = queue

foo().then {
    // Do something on queue.
}

from promises.

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.