fix: websocket session send synchronized

Signed-off-by: MiaoWoo <admin@yumc.pw>
This commit is contained in:
2020-05-30 10:18:01 +08:00
parent 5943d6882f
commit c9ca4ffd39
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ export class TomcatClient extends EventEmitter implements SocketIO.EngineSocket
return this._id;
}
send(text: string) {
this.session.getBasicRemote().sendText(text)
Java.synchronized(() => this.session.getBasicRemote().sendText(text), this.session)()
}
close() {
this.session.close();