Giter Club home page Giter Club logo

buffered-reconnector's Introduction

buffered-reconnector

Attempts to solve a common problem: transparently reconnecting to a remote resource when it unexpectedly disconnects, and buffering calls while attempting to reconnect. Buffer limits and timeouts are supported.

Example reconnecting to RabbitMQ automatically with amqplib

import Reconnector from "buffered-reconnector";
import amqp from "amqplib";

const rc = new Reconnector(function (bridge) {
  // this function is called the "initializer"
  const connP = amqp.connect();
  const chanP = connP.then(conn => conn.createChannel());

  chanP.then(chan => {
    chan.on("error", () => bridge.hasDisconnected());
    bridge.hasConnected();
  });

  bridge.onClose(() => connP.then(conn => conn.close()));

  return chanP;
});

// needs ES6 proxy
const prox = rc.createProxy();

// you can call this method immediately (i.e. while establishing a connection)
prox.sendToQueue("my_queue", new Buffer("hello!"))
  .then(() => rc.close());

// or, without proxies, there's this sort of balky API
rc.call("sendToQueue", ["my_queue", new Buffer("hello")])
   .then(() => rc.close());

// now the process can exit cleanly

A couple things to note about properly implementing the initializer, for any underlying client.

  • It is required to call bridge.onClose in the initializer function. This determines how to close the underlying connection cleanly.
  • The initializer should call bridge.hasConnected to signal that the connection has been established.
  • The initializer should call bridge.hasDisconnected to signal that the connection has been interrupted.
  • createProxy() and call() forward method calls to the object/promise returned from the initializer.

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.