Interface WebsocketClientSslProvider

All Known Implementing Classes:
DefaultWebSocketClientSslProvider

public interface WebsocketClientSslProvider
Interface that is loaded from a service loader, that allows you to configure SSL for web socket client connections.
Author:
Stuart Douglas
  • Method Summary

    Modifier and Type
    Method
    Description
    getSsl(io.netty.channel.EventLoopGroup worker, jakarta.websocket.Endpoint endpoint, jakarta.websocket.ClientEndpointConfig cec, URI uri)
     
    getSsl(io.netty.channel.EventLoopGroup worker, Class<?> annotatedEndpoint, URI uri)
     
    getSsl(io.netty.channel.EventLoopGroup worker, Object annotatedEndpointInstance, URI uri)
     
  • Method Details

    • getSsl

      SSLContext getSsl(io.netty.channel.EventLoopGroup worker, Class<?> annotatedEndpoint, URI uri)
    • getSsl

      SSLContext getSsl(io.netty.channel.EventLoopGroup worker, Object annotatedEndpointInstance, URI uri)
    • getSsl

      SSLContext getSsl(io.netty.channel.EventLoopGroup worker, jakarta.websocket.Endpoint endpoint, jakarta.websocket.ClientEndpointConfig cec, URI uri)