You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We allow users to set SocketOptions on the client/server builder and to query SocketOptions on ConnectionContext API. Currently, these methods support only SocketOption constants from java.net.StandardSocketOptions and io.servicetalk.transport.api.ServiceTalkSocketOptions. However, the java.net.SocketOption API is generic and we should allow users to provide a custom implementation of this interface. We can match it with the ChannelOption that netty uses internally.
The text was updated successfully, but these errors were encountered:
We allow users to set
SocketOption
s on the client/server builder and to querySocketOption
s onConnectionContext
API. Currently, these methods support onlySocketOption
constants fromjava.net.StandardSocketOptions
andio.servicetalk.transport.api.ServiceTalkSocketOptions
. However, thejava.net.SocketOption
API is generic and we should allow users to provide a custom implementation of this interface. We can match it with theChannelOption
that netty uses internally.The text was updated successfully, but these errors were encountered: