@devgrid/netron
Version:
Event bus, streams and remote object invocation.
13 lines • 457 B
JavaScript
export const TYPE_PING = 0x00;
export const TYPE_GET = 0x01;
export const TYPE_SET = 0x02;
export const TYPE_CALL = 0x03;
export const TYPE_TASK = 0x04;
export const TYPE_STREAM = 0x05;
export var StreamType;
(function (StreamType) {
StreamType[StreamType["FIRST"] = 1] = "FIRST";
StreamType[StreamType["MIDDLE"] = 2] = "MIDDLE";
StreamType[StreamType["LAST"] = 3] = "LAST";
})(StreamType || (StreamType = {}));
//# sourceMappingURL=types.js.map