send()

in src/com.jetbrains.youtrack.sdPlugin/libs/js/api.js [162:168]


	send(context, event, payload = {}) {
		if (!this.websocket || this.websocket.readyState !== this.websocket.OPEN) {
			console.warn('WebSocket closed, initWebSocket.');
			this.initWebSocket();
		}
		this.websocket && this.websocket.send(JSON.stringify({ context, event, ...payload }));
	}