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
It looks OkHttpServer and InProcessServer does not implement Server (they implement InternalServer instead, ), so they does not implement getListenSockets. The InternalServer interface has getListenerSocketAddress and getListenSocketStats. Is it a UX concern that this API only works for netty transport, but not for OkHttp and InProcess transport?
It looks OkHttpServer and InProcessServer does not implement Server (they implement InternalServer instead, ), so they does not implement getListenSockets. The InternalServer interface has getListenerSocketAddress and getListenSocketStats. Is it a UX concern that this API only works for netty transport, but not for OkHttp and InProcess transport?
OkHttpServer is transport. ServerImpl is built from OkHttpServerBuilder that implements Server, and OkHttpServer.getListenSocketAddresses returns listener sockets.
Usage:
Server.getListenSockets()
The text was updated successfully, but these errors were encountered: