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

org.java_websocket.client.WebSocketClient.scala Maven / Gradle / Ivy

The newest version!
package org.java_websocket.client

import java.net.URI

class WebSocketClient(uri: URI) {
  def connect(): Unit = ???
  def send(message: String): Unit = ???
  def send(message: Array[Byte]): Unit = ???
  def close(): Unit = ???
  def isClosed(): Boolean = ???
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy