Git Product home page Git Product logo

Comments (4)

shoumikhin avatar shoumikhin commented on April 29, 2024

Hi @dinghaoz, could you by chance throttle requests on the UI level?
Perhaps something like the following may work?

func textViewDidChange(_ textView: UITextView) {
  NSObject.cancelPreviousPerformRequests(withTarget: self, selector: #selector(autocomplete(_:)), object: textView)
  perform(#selector(autocomplete(_:)), with: textView, afterDelay: 0.5)
}

@objc
func autocomplete(_ textView: UITextView) {
  // ...
}

from promises.

dinghaoz avatar dinghaoz commented on April 29, 2024

Thanks for the quick reply @shoumikhin, and sorry for the confusion.
Your solution solved the problem of sending redundant requests, however for the requests that have already been sent, they are not canceled (i.e. the completion callback will still be called). This might be ok when the autocompletion only involves one request. But if the autocompletion (for example), requires several requests to get the data, which are chained together with the promise pattern, how do I cancel all of them, including those haven't been sent out yet?

Think about another case where there are many depending network requests chained together with the promises pattern inside a UIViewController, and then when the user tap the back button of the UIViewController, I would like to cancel all of them, including those haven't been sent out yet, with one cancellation method on some object.

Does promises supports that? or do I use it in a wrong way?

from promises.

shoumikhin avatar shoumikhin commented on April 29, 2024

There's some ongoing work to add convenient cancellation to Promises.
But for now, you'd need to use some kind of an outer cancellation token to set when the next request is issued to cancel the current one and probably use such token inside a promise work block to check if any work still needs to be done and stay notified when to bail out. As an option, you may also store a promise somewhere and directly reject it to skip any chained then blocks.

from promises.

dinghaoz avatar dinghaoz commented on April 29, 2024

Thanks @shoumikhin

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.