javax.websocket.RemoteEndpoint.Async Java Examples
The following examples show how to use
javax.websocket.RemoteEndpoint.Async.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AbstractWsController.java From springboot-learn with MIT License | 5 votes |
/** * 异步方式向客户端发送字符串 * * @param msg 参数类型为String或ByteBuffer */ protected <T> void callAsync(T msg) { Async remote = this.getSession().getAsyncRemote(); if (msg instanceof String) { remote.sendText((String) msg); } else if (msg instanceof ByteBuffer) { remote.sendBinary((ByteBuffer) msg); } }