backo2

WebJar for backo2

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

backo2
Last Version

Last Version

1.0.2
Release Date

Release Date

Type

Type

jar
Description

Description

backo2
WebJar for backo2
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/mokesmokes/backo

Download backo2

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/backo2/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>backo2</artifactId>
    <version>1.0.2</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/backo2/
implementation 'org.webjars.npm:backo2:1.0.2'
// https://jarcasting.com/artifacts/org.webjars.npm/backo2/
implementation ("org.webjars.npm:backo2:1.0.2")
'org.webjars.npm:backo2:jar:1.0.2'
<dependency org="org.webjars.npm" name="backo2" rev="1.0.2">
  <artifact name="backo2" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='backo2', version='1.0.2')
)
libraryDependencies += "org.webjars.npm" % "backo2" % "1.0.2"
[org.webjars.npm/backo2 "1.0.2"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

backo

Simple exponential backoff because the others seem to have weird abstractions.

Installation

$ npm install backo

Options

  • min initial timeout in milliseconds [100]
  • max max timeout [10000]
  • jitter [0]
  • factor [2]

Example

var Backoff = require('backo');
var backoff = new Backoff({ min: 100, max: 20000 });

setTimeout(function(){
  something.reconnect();
}, backoff.duration());

// later when something works
backoff.reset()

License

MIT

Versions

Version
1.0.2