Code Monkey home page Code Monkey logo

Comments (3)

sroze avatar sroze commented on July 18, 2024

I also had this issue of having automerge-repo processes not stopping with NodeJS. For each Repo I have created, I need to do the following to close down all intervals & sockets:

// Create your `Repo`
const adapter = new BrowserWebSocketClientAdapter(`ws://localhost:${PORT}`);
const repo = new Repo({
  network: [ adapter ],
  // ...
})

// I disconnect `Repo` from the server:
adapter.disconnect()
adapter.peerId = undefined; // if not done, it will reconnect automatically.
adapter.socket?.close();

// stop each handle
Object.values(repo.handles).forEach((handle) => {
  // @ts-ignore `stop` has been added manually through a patch
  handle.stop();
});

For context, here's DocHandle's stop method that I had to add through a patch:

stop() {
  this.#machine.stop();
}

Provided guidance and strong PoV on the right technical strategy, very happy to contribute the changes needed.

from automerge-repo.

sroze avatar sroze commented on July 18, 2024

@dmaretskyi @pvh it would be great to have your insights on this.

from automerge-repo.

pvh avatar pvh commented on July 18, 2024

ah yeah, this is just unfinished work i haven't felt enough pain from to fix yet.

a repo.stop() would be a good short-term workaround but really we probably also want something like repo.allSynced() or something as well.

broadly speaking the design here is something along the lines of "for short-lived processes there should be a way to gracefully exit when a task is done" and i think the "when a task is done" is going to be the more involved part.

from automerge-repo.

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.