package jdkhttpclient
- Source
- package.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- jdkhttpclient
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- trait WSClient[F[_]] extends AnyRef
- trait WSConnection[F[_]] extends AnyRef
- trait WSConnectionHighLevel[F[_]] extends AnyRef
- sealed trait WSControlFrame extends WSFrame
- sealed trait WSDataFrame extends WSFrame
- sealed trait WSFrame extends Product with Serializable
- case class WSRequest(uri: Uri, headers: Headers = Headers.empty, method: Method = Method.GET) extends Product with Serializable
A websocket request.
A websocket request.
- uri
The URI.
- headers
The headers to send. Put your
Sec-Websocket-Protocol
headers here if needed. Some websocket clients reject other WS-specific headers.- method
The method of the intial HTTP request. Ignored by some clients.
Value Members
- object JdkHttpClient
- object JdkWSClient
A
WSClient
wrapper for the JDK 11+ websocket client.A
WSClient
wrapper for the JDK 11+ websocket client. It will reply to Pongs with Pings even in "low-level" mode. Custom (non-GET) HTTP methods are ignored. - object WSClient
- object WSFrame extends Serializable