Methanol should implement newWebSocketBuilder
The default java HttpClient implements the newWebSocketBuilder method, but the Methanol client doesn't. I believe the Methanol client should always forward the method to the underlying client.
Methanol.create().newWebSocketBuilder() // Throws an exception
Methanol.create().underlyingClient().newWebSocketBuilder() // This works
@gpsfl Good catch. I believe there are no fields defined in Methanol that would extend to the websocket, so just forwarding to the underlying client should be fine. Thanks for reporting!
Do you have any plans for a new update with the changes in it?
Yes, will include it in the long-awaited 1.8.0 update. Currently finalizing the last two planned "new" features for this release (Hints API for adapters & Kotlin extensions).