Giter Site home page Giter Site logo

Connected event listener about rascal HOT 4 CLOSED

onebeyond avatar onebeyond commented on June 7, 2024
Connected event listener

from rascal.

Comments (4)

cressie176 avatar cressie176 commented on June 7, 2024

In Rascal, the broker is a wrapper for one or more vhosts, and each vhost manages its own connection. The vhosts emit connect events, which are forwarded to the broker, however this might not be useful for two reasons...

  1. BrokerAsPromised.create won't yield until all the connections have been established, so you won't have the opportunity to registered handlers until after the events have been emitted (but you could listen for connect events following a disconnection)
  2. There's nothing to tell the broker which vhost the events are from.

What did you want to use the connect event for?

from rascal.

duccio avatar duccio commented on June 7, 2024

Thanks for the reply. I'm interested on "connect event" for logging purpose. Can I assume so that after a try...catch block like this:

try {
  const broker = await rascal.BrokerAsPromised.create(rascal.withDefaultConfig(rascalConfigServer))
  broker.on("error", onRascalBrokerError)
} catch (error) {
  onRascalBrokerError(error)
}

Rascal is connected to all the virtual hosts? So:

try {
  const broker = await rascal.BrokerAsPromised.create(rascal.withDefaultConfig(rascalConfigServer))
  broker.on("error", onRascalBrokerError)
} catch (error) {
  onRascalBrokerError(error)
}

console.log("Rascal connected successful to all the vhosts!")```

from rascal.

cressie176 avatar cressie176 commented on June 7, 2024

Maybe...

try {
  const broker = await rascal.BrokerAsPromised.create(rascal.withDefaultConfig(rascalConfigServer))
  console.log("Rascal connected successful to all the vhosts!")```
  broker.on("error", onRascalBrokerError)
} catch (error) {
  onRascalBrokerError(error)
}

from rascal.

duccio avatar duccio commented on June 7, 2024

Yeah, for sure, my mistake. Thanks for confirm that BrokerAsPromised.create won't yield until all the connections have been established.

from rascal.

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.