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

io.contek.invoker.okx.api.websocket.common.WebSocketPing 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._ping;

@NotThreadSafe
public final class WebSocketPing extends WebSocketOutboundMessage
    implements IWebSocketRawTextMessage {

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy