From cc7a5b357b1a88121fa474b99e80db602b5f623d Mon Sep 17 00:00:00 2001 From: zaxar163 Date: Sun, 30 Sep 2018 14:38:08 +0300 Subject: [PATCH] Make send methods. --- .../request/websockets/ClientJSONPoint.java | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/LauncherAPI/src/main/java/ru/gravit/launcher/request/websockets/ClientJSONPoint.java b/LauncherAPI/src/main/java/ru/gravit/launcher/request/websockets/ClientJSONPoint.java index ee0eb5a7..66069bc3 100644 --- a/LauncherAPI/src/main/java/ru/gravit/launcher/request/websockets/ClientJSONPoint.java +++ b/LauncherAPI/src/main/java/ru/gravit/launcher/request/websockets/ClientJSONPoint.java @@ -1,8 +1,7 @@ package ru.gravit.launcher.request.websockets; import java.io.IOException; -import java.util.logging.Level; -import java.util.logging.Logger; +import java.io.Reader; import javax.websocket.ClientEndpoint; import javax.websocket.OnError; @@ -50,11 +49,19 @@ public void processError(final Throwable t) { } @OnMessage - public void processMessage(final String message) { + public void processMessage(Reader message) { try { JsonValue json = Json.parse(message); - } catch (ParseException ex) { + } catch (ParseException | IOException ex) { LogHelper.error(ex); } } + + public void send(JsonValue js) throws IOException { + session.getBasicRemote().sendText(js.asString()); + } + + public void sendAsync(JsonValue js) throws IOException { + session.getAsyncRemote().sendText(js.asString()); + } } \ No newline at end of file