Uses of Class
org.apache.qpid.jms.transports.TransportOptions
Packages that use TransportOptions
-
Uses of TransportOptions in org.apache.qpid.jms.transports
Methods in org.apache.qpid.jms.transports that return TransportOptionsModifier and TypeMethodDescriptionprotected TransportOptionsTransportFactory.applyTransportConfiguration(TransportOptions transportOptions, Map<String, String> transportURIOptions) Apply URI options to a freshly createdTransportOptionsinstance which will be used when the actualTransportis created.TransportOptions.clone()protected TransportOptionsTransportOptions.copyOptions(TransportOptions copy) protected TransportOptionsTransportFactory.doCreateTransportOptions()Create and return an instance of TransportOptions appropriate for the Transport type that this factory will return.Transport.getTransportOptions()Methods in org.apache.qpid.jms.transports with parameters of type TransportOptionsModifier and TypeMethodDescriptionprotected TransportOptionsTransportFactory.applyTransportConfiguration(TransportOptions transportOptions, Map<String, String> transportURIOptions) Apply URI options to a freshly createdTransportOptionsinstance which will be used when the actualTransportis created.protected TransportOptionsTransportOptions.copyOptions(TransportOptions copy) static SSLContextTransportSupport.createJdkSslContext(TransportOptions options) Create a new SSLContext using the options specific in the given TransportOptions instance.static SSLEngineTransportSupport.createJdkSslEngine(URI remote, SSLContext context, TransportOptions options) Create a new JDK SSLEngine instance in client mode from the given SSLContext and TransportOptions instances.static io.netty.handler.ssl.SslContextTransportSupport.createOpenSslContext(TransportOptions options) Create a new Netty SslContext using the options specific in the given TransportOptions instance.static SSLEngineTransportSupport.createOpenSslEngine(io.netty.buffer.ByteBufAllocator allocator, URI remote, io.netty.handler.ssl.SslContext context, TransportOptions options) Create a new OpenSSL SSLEngine instance in client mode from the given SSLContext and TransportOptions instances.static io.netty.handler.ssl.SslHandlerTransportSupport.createSslHandler(io.netty.buffer.ByteBufAllocator allocator, URI remote, TransportOptions options) Creates a Netty SslHandler instance for use in Transports that require an SSL encoder / decoder.protected abstract TransportTransportFactory.doCreateTransport(URI remoteURI, TransportOptions transportOptions) Create the actual Transport instance for this factory using the provided URI and TransportOptions instances.static booleanTransportSupport.isOpenSSLPossible(TransportOptions options) Determines if Netty OpenSSL support is available and applicable based on the configuration in the given TransportOptions instance. -
Uses of TransportOptions in org.apache.qpid.jms.transports.netty
Methods in org.apache.qpid.jms.transports.netty that return TransportOptionsModifier and TypeMethodDescriptionprotected TransportOptionsNettyWsTransportFactory.applyTransportConfiguration(TransportOptions transportOptions, Map<String, String> transportURIOptions) NettyTcpTransport.getTransportOptions()Methods in org.apache.qpid.jms.transports.netty with parameters of type TransportOptionsModifier and TypeMethodDescriptionprotected TransportOptionsNettyWsTransportFactory.applyTransportConfiguration(TransportOptions transportOptions, Map<String, String> transportURIOptions) protected NettyTcpTransportNettyTcpTransportFactory.doCreateTransport(URI remoteURI, TransportOptions transportOptions) protected NettyTcpTransportNettyWsTransportFactory.doCreateTransport(URI remoteURI, TransportOptions transportOptions) static booleanEpollSupport.isAvailable(TransportOptions transportOptions) static booleanKQueueSupport.isAvailable(TransportOptions transportOptions) static EventLoopTypeEventLoopType.valueOf(TransportOptions transportOptions) Returns the enum constant of this type with the specified name.Constructors in org.apache.qpid.jms.transports.netty with parameters of type TransportOptionsModifierConstructorDescriptionNettyTcpTransport(URI remoteLocation, TransportOptions options, boolean secure) Create a new transport instanceNettyTcpTransport(TransportListener listener, URI remoteLocation, TransportOptions options, boolean secure) Create a new transport instanceNettyWsTransport(URI remoteLocation, TransportOptions options, boolean secure) Create a new transport instanceNettyWsTransport(TransportListener listener, URI remoteLocation, TransportOptions options, boolean secure) Create a new transport instance