Uses of Class
io.vertx.core.eventbus.EventBusOptions
Packages that use EventBusOptions
-
Uses of EventBusOptions in io.vertx.core
Methods in io.vertx.core that return EventBusOptionsMethods in io.vertx.core with parameters of type EventBusOptionsModifier and TypeMethodDescriptionVertxOptions.setEventBusOptions(EventBusOptions options) Sets the event bus configuration to configure the host, port, ssl... -
Uses of EventBusOptions in io.vertx.core.eventbus
Methods in io.vertx.core.eventbus that return EventBusOptionsModifier and TypeMethodDescriptionEventBusOptions.addCrlPath(String crlPath) EventBusOptions.addCrlValue(Buffer crlValue) EventBusOptions.addEnabledCipherSuite(String suite) EventBusOptions.addEnabledSecureTransportProtocol(String protocol) EventBusOptions.removeEnabledCipherSuite(String suite) EventBusOptions.removeEnabledSecureTransportProtocol(String protocol) EventBusOptions.setAcceptBacklog(int acceptBacklog) Set the accept back log.EventBusOptions.setClientAuth(ClientAuth clientAuth) Set whether client auth is requiredEventBusOptions.setClusterNodeMetadata(JsonObject clusterNodeMetadata) Set information about this node when Vert.x is clustered.EventBusOptions.setClusterPingInterval(long clusterPingInterval) Set the value of cluster ping interval, in ms.EventBusOptions.setClusterPingReplyInterval(long clusterPingReplyInterval) Set the value of cluster ping reply interval, in ms.EventBusOptions.setClusterPublicHost(String clusterPublicHost) Set the public facing hostname to be used for clustering.EventBusOptions.setClusterPublicPort(int clusterPublicPort) SeeEventBusOptions.setClusterPublicHost(String)for an explanation.EventBusOptions.setConnectTimeout(int connectTimeout) Sets the connect timeoutEventBusOptions.setEnabledSecureTransportProtocols(Set<String> enabledSecureTransportProtocols) Sets the host.EventBusOptions.setIdleTimeout(int idleTimeout) EventBusOptions.setIdleTimeoutUnit(TimeUnit idleTimeoutUnit) EventBusOptions.setKeyCertOptions(KeyCertOptions options) EventBusOptions.setLogActivity(boolean logEnabled) EventBusOptions.setPort(int port) Sets the port.EventBusOptions.setReadIdleTimeout(int idleTimeout) EventBusOptions.setReceiveBufferSize(int receiveBufferSize) EventBusOptions.setReconnectAttempts(int attempts) Sets the value of reconnect attempts.EventBusOptions.setReconnectInterval(long interval) Set the reconnect interval.EventBusOptions.setReuseAddress(boolean reuseAddress) EventBusOptions.setReusePort(boolean reusePort) EventBusOptions.setSendBufferSize(int sendBufferSize) EventBusOptions.setSoLinger(int soLinger) EventBusOptions.setSsl(boolean ssl) EventBusOptions.setSslEngineOptions(SSLEngineOptions sslEngineOptions) EventBusOptions.setSslHandshakeTimeout(long sslHandshakeTimeout) EventBusOptions.setSslHandshakeTimeoutUnit(TimeUnit sslHandshakeTimeoutUnit) EventBusOptions.setTcpCork(boolean tcpCork) EventBusOptions.setTcpFastOpen(boolean tcpFastOpen) EventBusOptions.setTcpKeepAlive(boolean tcpKeepAlive) EventBusOptions.setTcpNoDelay(boolean tcpNoDelay) EventBusOptions.setTcpQuickAck(boolean tcpQuickAck) EventBusOptions.setTcpUserTimeout(int tcpUserTimeout) EventBusOptions.setTrafficClass(int trafficClass) EventBusOptions.setTrustAll(boolean trustAll) Set whether all server certificates should be trusted.EventBusOptions.setTrustOptions(TrustOptions options) EventBusOptions.setUseAlpn(boolean useAlpn) EventBusOptions.setWriteIdleTimeout(int idleTimeout) Constructors in io.vertx.core.eventbus with parameters of type EventBusOptionsModifierConstructorDescriptionEventBusOptions(EventBusOptions other) Copy constructor to create an instance ofEventBusOptionsusing the values of the given object.