All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.contek.invoker.okx.api.websocket.common.WebSocketPong Maven / Gradle / Ivy

There is a newer version: 3.8.0
Show newest version
package io.contek.invoker.okx.api.websocket.common;

import io.contek.invoker.commons.websocket.IWebSocketRawTextMessage;

import javax.annotation.concurrent.NotThreadSafe;

import static io.contek.invoker.commons.websocket.constants.WebSocketPingPongKeys._pong;

@NotThreadSafe
public final class WebSocketPong extends WebSocketInboundMessage
    implements IWebSocketRawTextMessage {

  @Override
  public String getRawText() {
    return _pong;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy