arvo-event-handler
Version:
Type-safe event handler system with versioning, telemetry, and contract validation for distributed Arvo event-driven architectures, featuring routing and multi-handler support.
19 lines (18 loc) • 549 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Abstract base class for Arvo event handlers.
*
* @abstract
* @description
* This class defines the basic structure for all Arvo event handlers.
* It provides an abstract method for executing events, which must be
* implemented by any concrete subclass.
* ```
*/
var AbstractArvoEventHandler = /** @class */ (function () {
function AbstractArvoEventHandler() {
}
return AbstractArvoEventHandler;
}());
exports.default = AbstractArvoEventHandler;