Halil Ozercan
03/26/2020, 1:45 PMpingInterval
and maxFrameSize
as constructor parameters, install(WebSockets)
does not have a configuration option. So, I’m now stuck, not able to turn on a feature that already exists.
Furthermore, maxFrameSize
is passed to DefaultWebSocketSession
as
return DefaultWebSocketSession(this, pingInterval, maxFrameSize)
it turns out, third parameter is actually timeoutMillis
not related to frameSize at all.
I’ve made necessary changes to client WebSockets feature to actually take configuration and added timeoutMillis
. Do you think I should make a pull request? It is a really small change and backward compatible.marstran
03/26/2020, 2:20 PMval
to var
?maxFrameSize
go?e5l
03/26/2020, 2:49 PMHalil Ozercan
03/26/2020, 7:48 PM