12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.JsonPipeDispatcher = void 0;
- var _dispatcher = require("./dispatcher");
- var _utils = require("../../utils");
- var _errors = require("../errors");
- class JsonPipeDispatcher extends _dispatcher.Dispatcher {
- constructor(scope) {
- super(scope, {
- guid: 'jsonPipe@' + (0, _utils.createGuid)()
- }, 'JsonPipe', {});
- this._type_JsonPipe = true;
- }
- async send(params) {
- this.emit('message', params.message);
- }
- async close() {
- this.emit('close');
- if (!this._disposed) {
- this._dispatchEvent('closed', {});
- this._dispose();
- }
- }
- dispatch(message) {
- if (!this._disposed) this._dispatchEvent('message', {
- message
- });
- }
- wasClosed(error) {
- if (!this._disposed) {
- const params = error ? {
- error: (0, _errors.serializeError)(error)
- } : {};
- this._dispatchEvent('closed', params);
- this._dispose();
- }
- }
- dispose() {
- this._dispose();
- }
- }
- exports.JsonPipeDispatcher = JsonPipeDispatcher;
|