@integromat/proto
Version:
Integromat Proto-Classes
55 lines • 2.07 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
if (typeof b !== "function" && b !== null)
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.IMTListener = void 0;
var base_1 = require("./base");
/**
* Base class for all Listeners.
*
* @event data Module dispatches this event on new data.
*/
var IMTListener = /** @class */ (function (_super) {
__extends(IMTListener, _super);
function IMTListener() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.type = base_1.ModuleType.LISTENER;
return _this;
}
/**
* Start listening for new data.
*
* @callback done Callback to call when listener is ready and listening.
* @param {Error} err Error on error, otherwise null.
*/
IMTListener.prototype.start = function (done) {
void done;
throw new Error("Must override a superclass method 'start'.");
};
/**
* Stop listening for new data.
*
* @callback done Callback to call when listener has stopped.
* @param {Error} err Error on error, otherwise null.
*/
IMTListener.prototype.stop = function (done) {
void done;
throw new Error("Must override a superclass method 'stop'.");
};
return IMTListener;
}(base_1.IMTBase));
exports.IMTListener = IMTListener;
//# sourceMappingURL=listener.js.map