Git Product home page Git Product logo

Comments (2)

smnbbrv avatar smnbbrv commented on August 16, 2024

Hi @RobinKamps ,

there is no built-in feature in ngx-grpc, but it is kinda built-in feature of the rxjs.

This is an example of what I normally use (not globally, just in place):

    this.client.listen(new MyRequest())
        .pipe(
          // infinitely retry in 3 seconds in case of error
          retryWhen(errors => errors.pipe(
            delay(3000),
          )),
        )
        .subscribe(() => /* here is your logic */);

If you need this to be enabled globally, just transform this code into an interceptor. Note, that interceptor's observables do not throw errors, so you might need some step before which looks for particular status codes and transforms them into errors. This is actually way more flexible approach because you can also limit reconnection to the specific status codes, e.g. to reconnect only on networking issues.

Please keep in mind that having global interceptor is good for most of the cases, but it will also make it problematic to switch it off for the particular requests. It might be more comfortable in the beginning but some day you might regret it.

from ngx-grpc.

RobinKamps avatar RobinKamps commented on August 16, 2024

Thank you very much.
i already tried the retryWhen operator, but could not get it to work to reconnect on completed for streams.
Your hint about transforming into errors (e.g. throwError), so that retryWith can pick it up, was helpful.
Now its working as expected.

from ngx-grpc.

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.