@stoplight/moleculer
Version:
Fast & powerful microservices framework for Node.JS
49 lines (40 loc) • 729 B
JavaScript
/*
* moleculer
* Copyright (c) 2018 MoleculerJS (https://github.com/moleculerjs/moleculer)
* MIT Licensed
*/
;
/**
* Endpoint class
*
* @class Endpoint
*/
class Endpoint {
/**
* Creates an instance of Endpoint.
* @param {Registry} registry
* @param {ServiceBroker} broker
* @param {Node} node
* @memberof Endpoint
*/
constructor(registry, broker, node) {
this.registry = registry;
this.broker = broker;
this.id = node.id;
this.node = node;
this.local = node.id === broker.nodeID;
this.state = true;
}
destroy() {}
/**
* Get availability
*
* @readonly
* @memberof Endpoint
*/
get isAvailable() {
return this.state;
}
update() {}
}
module.exports = Endpoint;