-
Notifications
You must be signed in to change notification settings - Fork 328
Open
Description
Hi,
I'm using sttp with tapir/http4s/fs2 to build a websocket server.
My websocket endpoint is described with tapir as:
val instance = endpoint.get
.in(PREFIX)
.out(webSocketBodyRaw(Fs2Streams[IO]))
and my business logic returns a fs2.Pipe[IO, WebSocketFrame, WebSocketFrame]
I have an use case when I would like to send a continuous WebSocketFrame (ie make a stream emit a continuous WebSocketFrame)
which I can't since WebSocketFrame exposes the finalFragment parameter only, not the isContinuation one
isContinuation is exposed in sttp.ws.WebSocket#send which is called by sttp.client3.impl.fs2.Fs2WebSockets#handleThroughPipe
with isContinuation always set to false.
Would that be possible to somehow expose the isContinuation flag when using the web socket with stream pipes ?
Thanks !
Regards,
Sebastien
Metadata
Metadata
Assignees
Labels
No labels