@devgrid/netron
Version:
A powerful TypeScript library for building distributed systems with event bus, streaming capabilities, and remote object invocation. Features WebSocket-based bidirectional communication between Node.js and browser environments, service discovery, and type
17 lines • 729 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.StreamType = exports.TYPE_STREAM_ERROR = exports.TYPE_STREAM = exports.TYPE_TASK = exports.TYPE_CALL = exports.TYPE_SET = exports.TYPE_GET = exports.TYPE_PING = void 0;
exports.TYPE_PING = 0x00;
exports.TYPE_GET = 0x01;
exports.TYPE_SET = 0x02;
exports.TYPE_CALL = 0x03;
exports.TYPE_TASK = 0x04;
exports.TYPE_STREAM = 0x05;
exports.TYPE_STREAM_ERROR = 0x06;
var StreamType;
(function (StreamType) {
StreamType[StreamType["FIRST"] = 1] = "FIRST";
StreamType[StreamType["MIDDLE"] = 2] = "MIDDLE";
StreamType[StreamType["LAST"] = 3] = "LAST";
})(StreamType || (exports.StreamType = StreamType = {}));
//# sourceMappingURL=types.js.map