websocket
websocket copied to clipboard
Jakarta WebSocket
Fixes https://github.com/jakartaee/websocket/issues/403
ServiceLoader use is not a feature supported by OSGi. On Eclipse Equinox, ServiceLoader support does not exist in any form. On Apache Felix, ServiceLoader support exists, but as an optional...
Hi. I want to get the instance who called connectToServer in the client endpoint. I can achieve it by the programmatic way. ``` public class BilibiliLiveClientEndpoint extends Endpoint { ```...
This will require a minimum of Java 9. Then we can use `ServiceLoader.stream()` and filter / sort the results. I'm leaning towards sort rather than filter.
To mirror the facility in `ServerEndpointConfig.Builder#extensions` add ability to define an array of Extensions (via class) which will be created and managed just for this endpoint. e.g. ``` public @interface...
The current spec states: > The method parameter may be of type String, any Java primitive type or any boxed version thereof. This is somewhat limiting so could be opened...
Although the sub-protocol is negotiated with with the client, there is no way to know what that is as this is only available in `Session#getNegotiatedSubprotocol()` which is not available to...
As outlined in https://github.com/eclipse-ee4j/websocket-api/issues/39#issuecomment-364855086 ... Danny Coward states ... > then try to find a Decoder.Text or a Decoder.TextStream. Look, in order, through developer provided ones (single list, may contain...