Uses of Class
io.vertx.rxjava.core.Vertx
-
-
Uses of Vertx in io.vertx.rxjava.amqp
Methods in io.vertx.rxjava.amqp with parameters of type Vertx Modifier and Type Method Description static AmqpClientAmqpClient. create(Vertx vertx, AmqpClientOptions options)Creates a new instance ofAmqpClientwith the given Vert.x instance and the given options. -
Uses of Vertx in io.vertx.rxjava.cassandra
Methods in io.vertx.rxjava.cassandra with parameters of type Vertx Modifier and Type Method Description static CassandraClientCassandraClient. create(Vertx vertx)LikeCassandraClient.create(io.vertx.rxjava.core.Vertx)with default options.static CassandraClientCassandraClient. create(Vertx vertx, CassandraClientOptions options)Create a Cassandra client which maintains its own driver session.static CassandraClientCassandraClient. createShared(Vertx vertx)LikeCassandraClient.createShared(io.vertx.rxjava.core.Vertx)with default options and client name.static CassandraClientCassandraClient. createShared(Vertx vertx, CassandraClientOptions options)LikeCassandraClient.createShared(io.vertx.rxjava.core.Vertx)with default client name.static CassandraClientCassandraClient. createShared(Vertx vertx, String clientName)LikeCassandraClient.createShared(io.vertx.rxjava.core.Vertx)with default options.static CassandraClientCassandraClient. createShared(Vertx vertx, String clientName, CassandraClientOptions options)Create a Cassandra client that shares its driver session with any other client having the same name. -
Uses of Vertx in io.vertx.rxjava.circuitbreaker
Methods in io.vertx.rxjava.circuitbreaker with parameters of type Vertx Modifier and Type Method Description static CircuitBreakerCircuitBreaker. create(String name, Vertx vertx)Creates a new instance ofCircuitBreaker, with default options.static CircuitBreakerCircuitBreaker. create(String name, Vertx vertx, CircuitBreakerOptions options)Creates a new instance ofCircuitBreaker.static HystrixMetricHandlerHystrixMetricHandler. create(Vertx vertx)Creates the handler, using the default notification address and listening to local messages only.static HystrixMetricHandlerHystrixMetricHandler. create(Vertx vertx, String address)Creates the handler, listening only to local messages.static HystrixMetricHandlerHystrixMetricHandler. create(Vertx vertx, String address, boolean localOnly)Creates the handler. -
Uses of Vertx in io.vertx.rxjava.config
Methods in io.vertx.rxjava.config with parameters of type Vertx Modifier and Type Method Description static ConfigRetrieverConfigRetriever. create(Vertx vertx)Creates an instance of the default implementation of theConfigRetriever, using the default settings (json file, system properties and environment variables).static ConfigRetrieverConfigRetriever. create(Vertx vertx, ConfigRetrieverOptions options)Creates an instance of the default implementation of theConfigRetriever. -
Uses of Vertx in io.vertx.rxjava.core
Fields in io.vertx.rxjava.core declared as Vertx Modifier and Type Field Description protected VertxAbstractVerticle. vertxFields in io.vertx.rxjava.core with type parameters of type Vertx Modifier and Type Field Description static TypeArg<Vertx>Vertx. __TYPE_ARGMethods in io.vertx.rxjava.core that return Vertx Modifier and Type Method Description VertxVertx. exceptionHandler(Handler<Throwable> handler)Set a default exception handler forContext, set onContext.exceptionHandler(io.vertx.core.Handler<java.lang.Throwable>)at creation.static VertxVertx. newInstance(Vertx arg)VertxContext. owner()static VertxVertx. vertx()Creates a non clustered instance using default options.static VertxVertx. vertx(VertxOptions options)Creates a non clustered instance using the specified optionsMethods in io.vertx.rxjava.core that return types with arguments of type Vertx Modifier and Type Method Description static rx.Single<Vertx>Vertx. rxClusteredVertx(VertxOptions options)Creates a clustered instance using the specified options.Methods in io.vertx.rxjava.core with parameters of type Vertx Modifier and Type Method Description static rx.SchedulerRxHelper. blockingScheduler(Vertx vertx)Create a scheduler for aVertxobject, actions can be blocking, they are not executed on Vertx event loop.static rx.SchedulerRxHelper. blockingScheduler(Vertx vertx, boolean ordered)Create a scheduler for aVertxobject, actions can be blocking, they are not executed on Vertx event loop.static rx.Observable<String>RxHelper. deployVerticle(Vertx vertx, Verticle verticle)Deploy a verticle you have created yourself, using an RxJava vertx instance.static rx.Observable<String>RxHelper. deployVerticle(Vertx vertx, Verticle verticle, DeploymentOptions options)LikeRxHelper.deployVerticle(Vertx, Verticle), butDeploymentOptionsare provided to configure the deployment.static rx.SchedulerRxHelper. scheduler(Vertx vertx)Create a scheduler for aVertxobject, actions are executed on the event loop of the current context.static rx.plugins.RxJavaSchedulersHookRxHelper. schedulerHook(Vertx vertx)Create a scheduler hook for aVertxobject.Method parameters in io.vertx.rxjava.core with type arguments of type Vertx Modifier and Type Method Description static voidVertx. clusteredVertx(VertxOptions options, Handler<AsyncResult<Vertx>> resultHandler)Creates a clustered instance using the specified options. -
Uses of Vertx in io.vertx.rxjava.db2client
Methods in io.vertx.rxjava.db2client with parameters of type Vertx Modifier and Type Method Description static SqlClientDB2Pool. client(Vertx vertx, DB2ConnectOptions database, PoolOptions options)LikeDB2Pool.client(java.lang.String)with a specific instance.static SqlClientDB2Pool. client(Vertx vertx, String connectionUri)LikeDB2Pool.client(java.lang.String)with default options.static SqlClientDB2Pool. client(Vertx vertx, String connectionUri, PoolOptions options)static SqlClientDB2Pool. client(Vertx vertx, List<DB2ConnectOptions> databases, PoolOptions options)LikeDB2Pool.client(java.lang.String)with a specific instance.static voidDB2Connection. connect(Vertx vertx, DB2ConnectOptions connectOptions)Create a connection to DB2 server with the givenconnectOptions.static voidDB2Connection. connect(Vertx vertx, DB2ConnectOptions connectOptions, Handler<AsyncResult<DB2Connection>> handler)Create a connection to DB2 server with the givenconnectOptions.static voidDB2Connection. connect(Vertx vertx, String connectionUri)static voidDB2Connection. connect(Vertx vertx, String connectionUri, Handler<AsyncResult<DB2Connection>> handler)static DB2PoolDB2Pool. pool(Vertx vertx, DB2ConnectOptions database, PoolOptions options)LikeDB2Pool.pool(java.lang.String)with a specific instance.static DB2PoolDB2Pool. pool(Vertx vertx, String connectionUri)LikeDB2Pool.pool(java.lang.String)with default options.static DB2PoolDB2Pool. pool(Vertx vertx, String connectionUri, PoolOptions options)static DB2PoolDB2Pool. pool(Vertx vertx, Supplier<Future<DB2ConnectOptions>> databases, PoolOptions poolOptions)LikeDB2Pool.pool(java.lang.String)with a specific instance.static DB2PoolDB2Pool. pool(Vertx vertx, List<DB2ConnectOptions> databases, PoolOptions options)LikeDB2Pool.pool(java.lang.String)with a specific instance.static rx.Single<DB2Connection>DB2Connection. rxConnect(Vertx vertx, DB2ConnectOptions connectOptions)Create a connection to DB2 server with the givenconnectOptions.static rx.Single<DB2Connection>DB2Connection. rxConnect(Vertx vertx, String connectionUri) -
Uses of Vertx in io.vertx.rxjava.ext.auth
Methods in io.vertx.rxjava.ext.auth with parameters of type Vertx Modifier and Type Method Description static VertxContextPRNGVertxContextPRNG. current(Vertx vertx)Get or create a secure non blocking random number generator using the current vert.x instance. -
Uses of Vertx in io.vertx.rxjava.ext.auth.htdigest
Methods in io.vertx.rxjava.ext.auth.htdigest with parameters of type Vertx Modifier and Type Method Description static HtdigestAuthHtdigestAuth. create(Vertx vertx)Creates an instance of HtdigestAuth.static HtdigestAuthHtdigestAuth. create(Vertx vertx, String htfile)Creates an instance of HtdigestAuth by using the given htfile file. -
Uses of Vertx in io.vertx.rxjava.ext.auth.htpasswd
Methods in io.vertx.rxjava.ext.auth.htpasswd with parameters of type Vertx Modifier and Type Method Description static HtpasswdAuthHtpasswdAuth. create(Vertx vertx)static HtpasswdAuthHtpasswdAuth. create(Vertx vertx, HtpasswdAuthOptions htpasswdAuthOptions) -
Uses of Vertx in io.vertx.rxjava.ext.auth.jdbc
Methods in io.vertx.rxjava.ext.auth.jdbc with parameters of type Vertx Modifier and Type Method Description static JDBCAuthJDBCAuth. create(Vertx vertx, JDBCClient client)Deprecated.static JDBCHashStrategyJDBCHashStrategy. createPBKDF2(Vertx vertx)Deprecated.static JDBCHashStrategyJDBCHashStrategy. createSHA512(Vertx vertx)Deprecated. -
Uses of Vertx in io.vertx.rxjava.ext.auth.jwt
Methods in io.vertx.rxjava.ext.auth.jwt with parameters of type Vertx Modifier and Type Method Description static JWTAuthJWTAuth. create(Vertx vertx, JWTAuthOptions config)Create a JWT auth provider -
Uses of Vertx in io.vertx.rxjava.ext.auth.ldap
Methods in io.vertx.rxjava.ext.auth.ldap with parameters of type Vertx Modifier and Type Method Description static LdapAuthenticationLdapAuthentication. create(Vertx vertx, LdapAuthenticationOptions options)Create a LDAP authentication provider -
Uses of Vertx in io.vertx.rxjava.ext.auth.oauth2
Methods in io.vertx.rxjava.ext.auth.oauth2 with parameters of type Vertx Modifier and Type Method Description static OAuth2AuthOAuth2Auth. create(Vertx vertx)Create a OAuth2 auth provider.static OAuth2AuthOAuth2Auth. create(Vertx vertx, OAuth2Options config)Create a OAuth2 auth provider -
Uses of Vertx in io.vertx.rxjava.ext.auth.oauth2.providers
Methods in io.vertx.rxjava.ext.auth.oauth2.providers with parameters of type Vertx Modifier and Type Method Description static OAuth2AuthAmazonCognitoAuth. create(Vertx vertx, String region, String clientId, String clientSecret, String guid)Create a OAuth2Auth provider for Amazon Cognitostatic OAuth2AuthAmazonCognitoAuth. create(Vertx vertx, String region, String clientId, String clientSecret, String userPoolId, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for Amazon Cognitostatic OAuth2AuthAzureADAuth. create(Vertx vertx, String clientId, String clientSecret, String guid)Create a OAuth2Auth provider for Microsoft Azure Active Directorystatic OAuth2AuthAzureADAuth. create(Vertx vertx, String clientId, String clientSecret, String guid, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for Microsoft Azure Active Directorystatic OAuth2AuthBoxAuth. create(Vertx vertx, String clientId, String clientSecret)Create a OAuth2Auth provider for App.netstatic OAuth2AuthBoxAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for App.netstatic OAuth2AuthCloudFoundryAuth. create(Vertx vertx, String clientId, String clientSecret, String uuaURL)Create a OAuth2Auth provider for CloudFoundry UAAstatic OAuth2AuthCloudFoundryAuth. create(Vertx vertx, String clientId, String clientSecret, String uuaURL, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for CloudFoundry UAAstatic OAuth2AuthDropboxAuth. create(Vertx vertx, String clientId, String clientSecret)Create a OAuth2Auth provider for Dropboxstatic OAuth2AuthDropboxAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for Dropboxstatic OAuth2AuthFacebookAuth. create(Vertx vertx, String clientId, String clientSecret)Create a OAuth2Auth provider for Facebookstatic OAuth2AuthFacebookAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for Facebookstatic OAuth2AuthFoursquareAuth. create(Vertx vertx, String clientId, String clientSecret)Create a OAuth2Auth provider for Foursquarestatic OAuth2AuthFoursquareAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for Foursquarestatic OAuth2AuthGiteeAuth. create(Vertx vertx, String clientId, String clientSecret)Create a OAuth2Auth provider for Giteestatic OAuth2AuthGiteeAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for Giteestatic OAuth2AuthGithubAuth. create(Vertx vertx, String clientId, String clientSecret)Create a OAuth2Auth provider for Githubstatic OAuth2AuthGithubAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for Githubstatic OAuth2AuthGitLabAuth. create(Vertx vertx, String clientId, String clientSecret)Create a OAuth2Auth provider for GitLab.com.static OAuth2AuthGitLabAuth. create(Vertx vertx, String site, String clientId, String clientSecret)Create a OAuth2Auth provider for GitLab.static OAuth2AuthGitLabAuth. create(Vertx vertx, String site, String clientId, String clientSecret, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for GitLab.static OAuth2AuthGoogleAuth. create(Vertx vertx, JsonObject serviceAccountJson)Create a OAuth2Auth provider for Google Service Account (Server to Server)static OAuth2AuthGoogleAuth. create(Vertx vertx, JsonObject serviceAccountJson, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for Google Service Account (Server to Server)static OAuth2AuthGoogleAuth. create(Vertx vertx, String clientId, String clientSecret)Create a OAuth2Auth provider for Googlestatic OAuth2AuthGoogleAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for Googlestatic OAuth2AuthHerokuAuth. create(Vertx vertx, String clientId, String clientSecret)Create a OAuth2Auth provider for Herokustatic OAuth2AuthHerokuAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for Herokustatic OAuth2AuthIBMCloudAuth. create(Vertx vertx, String region, String clientId, String clientSecret, String guid)Create a OAuth2Auth provider for IBM Cloudstatic OAuth2AuthIBMCloudAuth. create(Vertx vertx, String region, String clientId, String clientSecret, String guid, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for IBM Cloudstatic OAuth2AuthInstagramAuth. create(Vertx vertx, String clientId, String clientSecret)Create a OAuth2Auth provider for Instagramstatic OAuth2AuthInstagramAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for Instagramstatic OAuth2AuthKeycloakAuth. create(Vertx vertx, JsonObject config)Create a OAuth2Auth provider for Keycloakstatic OAuth2AuthKeycloakAuth. create(Vertx vertx, JsonObject config, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for Keycloakstatic OAuth2AuthKeycloakAuth. create(Vertx vertx, OAuth2FlowType flow, JsonObject config)Create a OAuth2Auth provider for Keycloakstatic OAuth2AuthKeycloakAuth. create(Vertx vertx, OAuth2FlowType flow, JsonObject config, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for Keycloakstatic OAuth2AuthLinkedInAuth. create(Vertx vertx, String clientId, String clientSecret)Create a OAuth2Auth provider for LinkedInstatic OAuth2AuthLinkedInAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for LinkedInstatic OAuth2AuthLiveAuth. create(Vertx vertx, String clientId, String clientSecret)Create a OAuth2Auth provider for live.comstatic OAuth2AuthLiveAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for live.comstatic OAuth2AuthMailchimpAuth. create(Vertx vertx, String clientId, String clientSecret)Create a OAuth2Auth provider for Mailchimpstatic OAuth2AuthMailchimpAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for Mailchimpstatic OAuth2AuthSalesforceAuth. create(Vertx vertx, String clientId, String clientSecret)Create a OAuth2Auth provider for Salesforcestatic OAuth2AuthSalesforceAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for Salesforcestatic OAuth2AuthShopifyAuth. create(Vertx vertx, String clientId, String clientSecret, String shop)Create a OAuth2Auth provider for Shopifystatic OAuth2AuthShopifyAuth. create(Vertx vertx, String clientId, String clientSecret, String shop, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for Shopifystatic OAuth2AuthSoundcloudAuth. create(Vertx vertx, String clientId, String clientSecret)Create a OAuth2Auth provider for SoundCloudstatic OAuth2AuthSoundcloudAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for SoundCloudstatic OAuth2AuthStripeAuth. create(Vertx vertx, String clientId, String clientSecret)Create a OAuth2Auth provider for Stripestatic OAuth2AuthStripeAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for Stripestatic OAuth2AuthTwitterAuth. create(Vertx vertx, String clientId, String clientSecret)Create a OAuth2Auth provider for Twitterstatic OAuth2AuthTwitterAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)Create a OAuth2Auth provider for Twitterstatic voidAmazonCognitoAuth. discover(Vertx vertx, OAuth2Options config)Create a OAuth2Auth provider for OpenID Connect Discovery.static voidAmazonCognitoAuth. discover(Vertx vertx, OAuth2Options config, Handler<AsyncResult<OAuth2Auth>> handler)Create a OAuth2Auth provider for OpenID Connect Discovery.static voidAzureADAuth. discover(Vertx vertx, OAuth2Options config)Create a OAuth2Auth provider for OpenID Connect Discovery.static voidAzureADAuth. discover(Vertx vertx, OAuth2Options config, Handler<AsyncResult<OAuth2Auth>> handler)Create a OAuth2Auth provider for OpenID Connect Discovery.static voidGoogleAuth. discover(Vertx vertx, OAuth2Options config)Create a OAuth2Auth provider for OpenID Connect Discovery.static voidGoogleAuth. discover(Vertx vertx, OAuth2Options config, Handler<AsyncResult<OAuth2Auth>> handler)Create a OAuth2Auth provider for OpenID Connect Discovery.static voidIBMCloudAuth. discover(Vertx vertx, OAuth2Options config)Create a OAuth2Auth provider for OpenID Connect Discovery.static voidIBMCloudAuth. discover(Vertx vertx, OAuth2Options config, Handler<AsyncResult<OAuth2Auth>> handler)Create a OAuth2Auth provider for OpenID Connect Discovery.static voidKeycloakAuth. discover(Vertx vertx, OAuth2Options config)Create a OAuth2Auth provider for OpenID Connect Discovery.static voidKeycloakAuth. discover(Vertx vertx, OAuth2Options config, Handler<AsyncResult<OAuth2Auth>> handler)Create a OAuth2Auth provider for OpenID Connect Discovery.static voidOpenIDConnectAuth. discover(Vertx vertx, OAuth2Options config)Create a OAuth2Auth provider for OpenID Connect Discovery.static voidOpenIDConnectAuth. discover(Vertx vertx, OAuth2Options config, Handler<AsyncResult<OAuth2Auth>> handler)Create a OAuth2Auth provider for OpenID Connect Discovery.static voidSalesforceAuth. discover(Vertx vertx, OAuth2Options config)Create a OAuth2Auth provider for OpenID Connect Discovery.static voidSalesforceAuth. discover(Vertx vertx, OAuth2Options config, Handler<AsyncResult<OAuth2Auth>> handler)Create a OAuth2Auth provider for OpenID Connect Discovery.static rx.Single<OAuth2Auth>AmazonCognitoAuth. rxDiscover(Vertx vertx, OAuth2Options config)Create a OAuth2Auth provider for OpenID Connect Discovery.static rx.Single<OAuth2Auth>AzureADAuth. rxDiscover(Vertx vertx, OAuth2Options config)Create a OAuth2Auth provider for OpenID Connect Discovery.static rx.Single<OAuth2Auth>GoogleAuth. rxDiscover(Vertx vertx, OAuth2Options config)Create a OAuth2Auth provider for OpenID Connect Discovery.static rx.Single<OAuth2Auth>IBMCloudAuth. rxDiscover(Vertx vertx, OAuth2Options config)Create a OAuth2Auth provider for OpenID Connect Discovery.static rx.Single<OAuth2Auth>KeycloakAuth. rxDiscover(Vertx vertx, OAuth2Options config)Create a OAuth2Auth provider for OpenID Connect Discovery.static rx.Single<OAuth2Auth>OpenIDConnectAuth. rxDiscover(Vertx vertx, OAuth2Options config)Create a OAuth2Auth provider for OpenID Connect Discovery.static rx.Single<OAuth2Auth>SalesforceAuth. rxDiscover(Vertx vertx, OAuth2Options config)Create a OAuth2Auth provider for OpenID Connect Discovery. -
Uses of Vertx in io.vertx.rxjava.ext.auth.properties
Methods in io.vertx.rxjava.ext.auth.properties with parameters of type Vertx Modifier and Type Method Description static PropertyFileAuthenticationPropertyFileAuthentication. create(Vertx vertx, String path)Create a File authentication providerstatic PropertyFileAuthorizationPropertyFileAuthorization. create(Vertx vertx, String path)Create a File authentication provider -
Uses of Vertx in io.vertx.rxjava.ext.auth.shiro
Methods in io.vertx.rxjava.ext.auth.shiro with parameters of type Vertx Modifier and Type Method Description static ShiroAuthShiroAuth. create(Vertx vertx, ShiroAuthOptions options)Deprecated. -
Uses of Vertx in io.vertx.rxjava.ext.auth.webauthn
Methods in io.vertx.rxjava.ext.auth.webauthn with parameters of type Vertx Modifier and Type Method Description static WebAuthnWebAuthn. create(Vertx vertx)Create a WebAuthN auth providerstatic WebAuthnWebAuthn. create(Vertx vertx, WebAuthnOptions options)Create a WebAuthN auth provider -
Uses of Vertx in io.vertx.rxjava.ext.consul
Methods in io.vertx.rxjava.ext.consul with parameters of type Vertx Modifier and Type Method Description static ConsulClientConsulClient. create(Vertx vertx)Create a Consul client with default options.static ConsulClientConsulClient. create(Vertx vertx, ConsulClientOptions options)Create a Consul client.static Watch<EventList>Watch. events(String event, Vertx vertx)CreatesWatchto monitoring the custom user events.static Watch<EventList>Watch. events(String event, Vertx vertx, ConsulClientOptions options)CreatesWatchto monitoring the custom user events.static Watch<KeyValue>Watch. key(String key, Vertx vertx)CreatesWatchto monitoring a specific key in the KV store.static Watch<KeyValue>Watch. key(String key, Vertx vertx, ConsulClientOptions options)CreatesWatchto monitoring a specific key in the KV store.static Watch<KeyValueList>Watch. keyPrefix(String keyPrefix, Vertx vertx)CreatesWatchto monitoring a prefix of keys in the KV store.static Watch<KeyValueList>Watch. keyPrefix(String keyPrefix, Vertx vertx, ConsulClientOptions options)CreatesWatchto monitoring a prefix of keys in the KV store.static Watch<NodeList>Watch. nodes(Vertx vertx)CreatesWatchto monitoring the list of available nodes.static Watch<NodeList>Watch. nodes(Vertx vertx, ConsulClientOptions options)CreatesWatchto monitoring the list of available nodes.static Watch<ServiceEntryList>Watch. service(String service, Vertx vertx)CreatesWatchto monitoring the nodes providing the service.static Watch<ServiceEntryList>Watch. service(String service, Vertx vertx, ConsulClientOptions options)CreatesWatchto monitoring the nodes providing the service.static Watch<ServiceList>Watch. services(Vertx vertx)CreatesWatchto monitoring the list of available services.static Watch<ServiceList>Watch. services(Vertx vertx, ConsulClientOptions options)CreatesWatchto monitoring the list of available services. -
Uses of Vertx in io.vertx.rxjava.ext.dropwizard
Methods in io.vertx.rxjava.ext.dropwizard with parameters of type Vertx Modifier and Type Method Description static MetricsServiceMetricsService. create(Vertx vertx)Creates a metric service for a givenVertxinstance. -
Uses of Vertx in io.vertx.rxjava.ext.eventbus.bridge.tcp
Methods in io.vertx.rxjava.ext.eventbus.bridge.tcp with parameters of type Vertx Modifier and Type Method Description static TcpEventBusBridgeTcpEventBusBridge. create(Vertx vertx)static TcpEventBusBridgeTcpEventBusBridge. create(Vertx vertx, BridgeOptions options)static TcpEventBusBridgeTcpEventBusBridge. create(Vertx vertx, BridgeOptions options, NetServerOptions netServerOptions)static TcpEventBusBridgeTcpEventBusBridge. create(Vertx vertx, BridgeOptions options, NetServerOptions netServerOptions, Handler<BridgeEvent> eventHandler) -
Uses of Vertx in io.vertx.rxjava.ext.healthchecks
Methods in io.vertx.rxjava.ext.healthchecks with parameters of type Vertx Modifier and Type Method Description static HealthCheckHandlerHealthCheckHandler. create(Vertx vertx)Creates an instance of the default implementation of theHealthCheckHandler.static HealthCheckHandlerHealthCheckHandler. create(Vertx vertx, AuthenticationProvider provider)Creates an instance of the default implementation of theHealthCheckHandler.static HealthChecksHealthChecks. create(Vertx vertx)Creates a new instance of the default implementation ofHealthChecks. -
Uses of Vertx in io.vertx.rxjava.ext.jdbc
Methods in io.vertx.rxjava.ext.jdbc with parameters of type Vertx Modifier and Type Method Description static JDBCClientJDBCClient. create(Vertx vertx, JsonObject config)Create a JDBC client which maintains its own data source.static JDBCClientJDBCClient. createShared(Vertx vertx, JsonObject config)LikeJDBCClient.createShared(io.vertx.rxjava.core.Vertx, io.vertx.core.json.JsonObject, java.lang.String)but with the default data source namestatic JDBCClientJDBCClient. createShared(Vertx vertx, JsonObject config, String dataSourceName)Create a JDBC client which shares its data source with any other JDBC clients created with the same data source name -
Uses of Vertx in io.vertx.rxjava.ext.mail
Methods in io.vertx.rxjava.ext.mail with parameters of type Vertx Modifier and Type Method Description static MailClientMailClient. create(Vertx vertx, MailConfig config)Create a non shared instance of the mail client.static MailClientMailClient. createShared(Vertx vertx, MailConfig config)LikeMailClient.createShared(io.vertx.rxjava.core.Vertx, io.vertx.ext.mail.MailConfig, java.lang.String)but with the default pool namestatic MailClientMailClient. createShared(Vertx vertx, MailConfig config, String poolName)Create a Mail client which shares its connection pool with any other Mail clients created with the same pool name -
Uses of Vertx in io.vertx.rxjava.ext.mongo
Methods in io.vertx.rxjava.ext.mongo with parameters of type Vertx Modifier and Type Method Description static MongoClientMongoClient. create(Vertx vertx, JsonObject config)Create a Mongo client which maintains its own data source.static MongoClientMongoClient. createShared(Vertx vertx, JsonObject config)LikeMongoClient.createShared(io.vertx.rxjava.core.Vertx, io.vertx.core.json.JsonObject, java.lang.String)but with the default data source namestatic MongoClientMongoClient. createShared(Vertx vertx, JsonObject config, String dataSourceName)Create a Mongo client which shares its data source with any other Mongo clients created with the same data source name -
Uses of Vertx in io.vertx.rxjava.ext.shell
Methods in io.vertx.rxjava.ext.shell with parameters of type Vertx Modifier and Type Method Description static ShellServerShellServer. create(Vertx vertx)Create a new shell server with specific options.static ShellServerShellServer. create(Vertx vertx, ShellServerOptions options)Create a new shell server with default options.static ShellServiceShellService. create(Vertx vertx)LikeShellService.create(io.vertx.rxjava.core.Vertx), with default options.static ShellServiceShellService. create(Vertx vertx, ShellServiceOptions options)Create a new shell service. -
Uses of Vertx in io.vertx.rxjava.ext.shell.cli
Methods in io.vertx.rxjava.ext.shell.cli that return Vertx Modifier and Type Method Description VertxCompletion. vertx() -
Uses of Vertx in io.vertx.rxjava.ext.shell.command
Methods in io.vertx.rxjava.ext.shell.command that return Vertx Modifier and Type Method Description VertxCommandProcess. vertx()Methods in io.vertx.rxjava.ext.shell.command with parameters of type Vertx Modifier and Type Method Description static CommandResolverCommandResolver. baseCommands(Vertx vertx)CommandCommandBuilder. build(Vertx vertx)Build the commandstatic CommandRegistryCommandRegistry. create(Vertx vertx)Create a new registry.static CommandRegistryCommandRegistry. getShared(Vertx vertx)Get the shared registry for the Vert.x instance. -
Uses of Vertx in io.vertx.rxjava.ext.shell.term
Methods in io.vertx.rxjava.ext.shell.term with parameters of type Vertx Modifier and Type Method Description static SockJSTermHandlerSockJSTermHandler. create(Vertx vertx, String charset)static TermServerTermServer. createHttpTermServer(Vertx vertx)Create a term server for the HTTP protocol.static TermServerTermServer. createHttpTermServer(Vertx vertx, HttpTermOptions options)Create a term server for the HTTP protocol.static TermServerTermServer. createHttpTermServer(Vertx vertx, Router router)Create a term server for the HTTP protocol, using an existing router.static TermServerTermServer. createHttpTermServer(Vertx vertx, Router router, HttpTermOptions options)Create a term server for the HTTP protocol, using an existing router.static TermServerTermServer. createSSHTermServer(Vertx vertx)Create a term server for the SSH protocol.static TermServerTermServer. createSSHTermServer(Vertx vertx, SSHTermOptions options)Create a term server for the SSH protocol.static TermServerTermServer. createTelnetTermServer(Vertx vertx)Create a term server for the Telnet protocol.static TermServerTermServer. createTelnetTermServer(Vertx vertx, TelnetTermOptions options)Create a term server for the Telnet protocol. -
Uses of Vertx in io.vertx.rxjava.ext.stomp
Methods in io.vertx.rxjava.ext.stomp that return Vertx Modifier and Type Method Description VertxStompClient. vertx()VertxStompServer. vertx()Methods in io.vertx.rxjava.ext.stomp with parameters of type Vertx Modifier and Type Method Description static DestinationDestination. bridge(Vertx vertx, BridgeOptions options)DestinationDestinationFactory. create(Vertx vertx, String name)Creates a destination for the given address.static StompClientStompClient. create(Vertx vertx)Creates aStompClientusing the default implementation.static StompClientStompClient. create(Vertx vertx, StompClientOptions options)Creates aStompClientusing the default implementation.static StompServerStompServer. create(Vertx vertx)Creates aStompServerbased on the default Stomp Server implementation, and use the default options.static StompServerStompServer. create(Vertx vertx, StompServerOptions options)Creates aStompServerbased on the default Stomp Server implementation.static StompServerStompServer. create(Vertx vertx, NetServer netServer)Creates aStompServerbased on the default Stomp Server implementation.static StompServerStompServer. create(Vertx vertx, NetServer net, StompServerOptions options)Creates aStompServerbased on the default Stomp Server implementation.static StompServerHandlerStompServerHandler. create(Vertx vertx)Creates an instance ofStompServerHandlerusing the default (compliant) implementation.static DestinationDestination. queue(Vertx vertx, String destination)static DestinationDestination. topic(Vertx vertx, String destination) -
Uses of Vertx in io.vertx.rxjava.ext.unit
Methods in io.vertx.rxjava.ext.unit with parameters of type Vertx Modifier and Type Method Description TestCompletionTestSuite. run(Vertx vertx)Run the testsuite with the default options and the specifiedvertxinstance.TestCompletionTestSuite. run(Vertx vertx, TestOptions options)Run the testsuite with the specifiedoptionsand the specifiedvertxinstance. -
Uses of Vertx in io.vertx.rxjava.ext.unit.collect
Methods in io.vertx.rxjava.ext.unit.collect with parameters of type Vertx Modifier and Type Method Description static EventBusCollectorEventBusCollector. create(Vertx vertx, Handler<TestSuiteReport> reporter)static EventBusCollectorEventBusCollector. create(Vertx vertx, ReportingOptions options)Create a message handler reporting with the specified options. -
Uses of Vertx in io.vertx.rxjava.ext.web
Methods in io.vertx.rxjava.ext.web that return Vertx Modifier and Type Method Description VertxRoutingContext. vertx()Methods in io.vertx.rxjava.ext.web with parameters of type Vertx Modifier and Type Method Description static RouterRouter. router(Vertx vertx)Create a router -
Uses of Vertx in io.vertx.rxjava.ext.web.api.contract.openapi3
Methods in io.vertx.rxjava.ext.web.api.contract.openapi3 with parameters of type Vertx Modifier and Type Method Description static voidOpenAPI3RouterFactory. create(Vertx vertx, String url)Deprecated.static voidOpenAPI3RouterFactory. create(Vertx vertx, String url, Handler<AsyncResult<OpenAPI3RouterFactory>> handler)Deprecated.static voidOpenAPI3RouterFactory. create(Vertx vertx, String url, List<JsonObject> auth)Deprecated.static voidOpenAPI3RouterFactory. create(Vertx vertx, String url, List<JsonObject> auth, Handler<AsyncResult<OpenAPI3RouterFactory>> handler)Deprecated.static rx.Single<OpenAPI3RouterFactory>OpenAPI3RouterFactory. rxCreate(Vertx vertx, String url)Deprecated.static rx.Single<OpenAPI3RouterFactory>OpenAPI3RouterFactory. rxCreate(Vertx vertx, String url, List<JsonObject> auth)Deprecated. -
Uses of Vertx in io.vertx.rxjava.ext.web.client
Methods in io.vertx.rxjava.ext.web.client with parameters of type Vertx Modifier and Type Method Description static WebClientWebClient. create(Vertx vertx)Create a web client using the providedvertxinstance and default options.static WebClientWebClient. create(Vertx vertx, WebClientOptions options)Create a web client using the providedvertxinstance. -
Uses of Vertx in io.vertx.rxjava.ext.web.handler
Methods in io.vertx.rxjava.ext.web.handler with parameters of type Vertx Modifier and Type Method Description static CSRFHandlerCSRFHandler. create(Vertx vertx, String secret)Instantiate a new CSRFHandlerImpl with a secretstatic DigestAuthHandlerDigestAuthHandler. create(Vertx vertx, HtdigestAuth authProvider)Create a digest auth handlerstatic DigestAuthHandlerDigestAuthHandler. create(Vertx vertx, HtdigestAuth authProvider, long nonceExpireTimeout)Create a digest auth handler, specifying the expire timeout for nonces.static ErrorHandlerErrorHandler. create(Vertx vertx)Create an error handler using defaultsstatic ErrorHandlerErrorHandler. create(Vertx vertx, boolean displayExceptionDetails)Create an error handlerstatic ErrorHandlerErrorHandler. create(Vertx vertx, String errorTemplateName)Create an error handlerstatic ErrorHandlerErrorHandler. create(Vertx vertx, String errorTemplateName, boolean displayExceptionDetails)Create an error handlerstatic FaviconHandlerFaviconHandler. create(Vertx vertx)Create a handler with defaultsstatic FaviconHandlerFaviconHandler. create(Vertx vertx, long maxAgeSeconds)Create a handler with the specified max cache timestatic FaviconHandlerFaviconHandler. create(Vertx vertx, String path)Create a handler attempting to load favicon file from the specified pathstatic FaviconHandlerFaviconHandler. create(Vertx vertx, String path, long maxAgeSeconds)Create a handler attempting to load favicon file from the specified path, and with the specified max cache timestatic OAuth2AuthHandlerOAuth2AuthHandler. create(Vertx vertx, OAuth2Auth authProvider)Create a OAuth2 auth handler without host pinning.static OAuth2AuthHandlerOAuth2AuthHandler. create(Vertx vertx, OAuth2Auth authProvider, String callbackURL)Create a OAuth2 auth handler with host pinning -
Uses of Vertx in io.vertx.rxjava.ext.web.handler.sockjs
Methods in io.vertx.rxjava.ext.web.handler.sockjs with parameters of type Vertx Modifier and Type Method Description static SockJSHandlerSockJSHandler. create(Vertx vertx)Create a SockJS handlerstatic SockJSHandlerSockJSHandler. create(Vertx vertx, SockJSHandlerOptions options)Create a SockJS handler -
Uses of Vertx in io.vertx.rxjava.ext.web.sstore
Methods in io.vertx.rxjava.ext.web.sstore with parameters of type Vertx Modifier and Type Method Description static ClusteredSessionStoreClusteredSessionStore. create(Vertx vertx)Create a session storestatic ClusteredSessionStoreClusteredSessionStore. create(Vertx vertx, long retryTimeout)Create a session store.static ClusteredSessionStoreClusteredSessionStore. create(Vertx vertx, String sessionMapName)Create a session storestatic ClusteredSessionStoreClusteredSessionStore. create(Vertx vertx, String sessionMapName, long retryTimeout)Create a session store.static LocalSessionStoreLocalSessionStore. create(Vertx vertx)Create a session storestatic LocalSessionStoreLocalSessionStore. create(Vertx vertx, String sessionMapName)Create a session storestatic LocalSessionStoreLocalSessionStore. create(Vertx vertx, String sessionMapName, long reaperInterval)Create a session storestatic SessionStoreSessionStore. create(Vertx vertx)Create a Session store given a backend and configuration JSON.static SessionStoreSessionStore. create(Vertx vertx, JsonObject options)Create a Session store given a backend and configuration JSON.SessionStoreSessionStore. init(Vertx vertx, JsonObject options)Initialize this store. -
Uses of Vertx in io.vertx.rxjava.ext.web.sstore.cookie
Methods in io.vertx.rxjava.ext.web.sstore.cookie with parameters of type Vertx Modifier and Type Method Description static CookieSessionStoreCookieSessionStore. create(Vertx vertx, String secret)Creates a CookieSessionStore. -
Uses of Vertx in io.vertx.rxjava.ext.web.sstore.infinispan
Methods in io.vertx.rxjava.ext.web.sstore.infinispan with parameters of type Vertx Modifier and Type Method Description static InfinispanSessionStoreInfinispanSessionStore. create(Vertx vertx, JsonObject options)Create a newInfinispanSessionStorefor the given configuration.static InfinispanSessionStoreInfinispanSessionStore. create(Vertx vertx, JsonObject options, org.infinispan.client.hotrod.RemoteCacheManager remoteCacheManager)LikeInfinispanSessionStore.create(io.vertx.rxjava.core.Vertx, io.vertx.core.json.JsonObject)but with a pre-configured Infinispan Client. -
Uses of Vertx in io.vertx.rxjava.ext.web.sstore.redis
Methods in io.vertx.rxjava.ext.web.sstore.redis with parameters of type Vertx Modifier and Type Method Description static RedisSessionStoreRedisSessionStore. create(Vertx vertx, long retryTimeoutMs, Redis redis)Creates a RedisSessionStore with the given retry TO.static RedisSessionStoreRedisSessionStore. create(Vertx vertx, Redis redis)Creates a RedisSessionStore with the default retry TO. -
Uses of Vertx in io.vertx.rxjava.ext.web.templ.freemarker
Methods in io.vertx.rxjava.ext.web.templ.freemarker with parameters of type Vertx Modifier and Type Method Description static FreeMarkerTemplateEngineFreeMarkerTemplateEngine. create(Vertx vertx)Create a template engine using defaultsstatic FreeMarkerTemplateEngineFreeMarkerTemplateEngine. create(Vertx vertx, String extension)Create a template engine using defaults -
Uses of Vertx in io.vertx.rxjava.ext.web.templ.handlebars
Methods in io.vertx.rxjava.ext.web.templ.handlebars with parameters of type Vertx Modifier and Type Method Description static HandlebarsTemplateEngineHandlebarsTemplateEngine. create(Vertx vertx)Create a template engine using defaultsstatic HandlebarsTemplateEngineHandlebarsTemplateEngine. create(Vertx vertx, String extension)Create a template engine using defaults -
Uses of Vertx in io.vertx.rxjava.ext.web.templ.jade
Methods in io.vertx.rxjava.ext.web.templ.jade with parameters of type Vertx Modifier and Type Method Description static JadeTemplateEngineJadeTemplateEngine. create(Vertx vertx)Deprecated.static JadeTemplateEngineJadeTemplateEngine. create(Vertx vertx, String extension)Deprecated. -
Uses of Vertx in io.vertx.rxjava.ext.web.templ.mvel
Methods in io.vertx.rxjava.ext.web.templ.mvel with parameters of type Vertx Modifier and Type Method Description static MVELTemplateEngineMVELTemplateEngine. create(Vertx vertx)Create a template engine using defaultsstatic MVELTemplateEngineMVELTemplateEngine. create(Vertx vertx, String extension)Create a template engine using defaults -
Uses of Vertx in io.vertx.rxjava.ext.web.templ.pebble
Methods in io.vertx.rxjava.ext.web.templ.pebble with parameters of type Vertx Modifier and Type Method Description static PebbleTemplateEnginePebbleTemplateEngine. create(Vertx vertx)Create a template engine using defaultsstatic PebbleTemplateEnginePebbleTemplateEngine. create(Vertx vertx, com.mitchellbosecke.pebble.PebbleEngine engine)Create a template engine using a custom Builder, e.g.static PebbleTemplateEnginePebbleTemplateEngine. create(Vertx vertx, String extension)Create a template engine using defaultsstatic PebbleTemplateEnginePebbleTemplateEngine. create(Vertx vertx, String extension, com.mitchellbosecke.pebble.PebbleEngine engine)Create a template engine using a custom Builder, e.g. -
Uses of Vertx in io.vertx.rxjava.ext.web.templ.thymeleaf
Methods in io.vertx.rxjava.ext.web.templ.thymeleaf with parameters of type Vertx Modifier and Type Method Description static ThymeleafTemplateEngineThymeleafTemplateEngine. create(Vertx vertx)Create a template engine using defaults -
Uses of Vertx in io.vertx.rxjava.grpc.client
Methods in io.vertx.rxjava.grpc.client with parameters of type Vertx Modifier and Type Method Description static GrpcClientGrpcClient. client(Vertx vertx)Create a new clientstatic GrpcClientGrpcClient. client(Vertx vertx, HttpClientOptions options)Create a new client -
Uses of Vertx in io.vertx.rxjava.grpc.server
Methods in io.vertx.rxjava.grpc.server with parameters of type Vertx Modifier and Type Method Description static GrpcServerGrpcServer. server(Vertx vertx)Create a blank gRPC server -
Uses of Vertx in io.vertx.rxjava.jdbcclient
Methods in io.vertx.rxjava.jdbcclient with parameters of type Vertx Modifier and Type Method Description static JDBCPoolJDBCPool. pool(Vertx vertx, JsonObject config)Create a JDBC pool which maintains its own data source.static JDBCPoolJDBCPool. pool(Vertx vertx, DataSourceProvider dataSourceProvider)Create a JDBC pool which maintains its own data source.static JDBCPoolJDBCPool. pool(Vertx vertx, JDBCConnectOptions connectOptions, PoolOptions poolOptions)Create a JDBC pool which maintains its own data source.static JDBCPoolJDBCPool. pool(Vertx vertx, DataSource dataSource)Create a JDBC pool using a pre-initialized data source.static JDBCPoolJDBCPool. pool(Vertx vertx, DataSource dataSource, JsonObject config)Create a JDBC pool using a pre-initialized data source. -
Uses of Vertx in io.vertx.rxjava.json.schema
Methods in io.vertx.rxjava.json.schema with parameters of type Vertx Modifier and Type Method Description static SchemaRouterSchemaRouter. create(Vertx vertx, SchemaRouterOptions schemaRouterOptions)Deprecated.static SchemaRouterSchemaRouter. create(Vertx vertx, HttpClient client, FileSystem fs, SchemaRouterOptions schemaRouterOptions)Deprecated. -
Uses of Vertx in io.vertx.rxjava.kafka.admin
Methods in io.vertx.rxjava.kafka.admin with parameters of type Vertx Modifier and Type Method Description static KafkaAdminClientKafkaAdminClient. create(Vertx vertx, Map<String,String> config)Create a new KafkaAdminClient instance -
Uses of Vertx in io.vertx.rxjava.kafka.client.consumer
Methods in io.vertx.rxjava.kafka.client.consumer with parameters of type Vertx Modifier and Type Method Description static <K,V>
KafkaConsumer<K,V>KafkaConsumer. create(Vertx vertx, KafkaClientOptions options)Create a new KafkaConsumer instancestatic <K,V>
KafkaConsumer<K,V>KafkaConsumer. create(Vertx vertx, KafkaClientOptions options, Class<K> keyType, Class<V> valueType)Create a new KafkaConsumer instancestatic <K,V>
KafkaConsumer<K,V>KafkaConsumer. create(Vertx vertx, Map<String,String> config)Create a new KafkaConsumer instancestatic <K,V>
KafkaConsumer<K,V>KafkaConsumer. create(Vertx vertx, Map<String,String> config, Class<K> keyType, Class<V> valueType)Create a new KafkaConsumer instance -
Uses of Vertx in io.vertx.rxjava.kafka.client.producer
Methods in io.vertx.rxjava.kafka.client.producer with parameters of type Vertx Modifier and Type Method Description static <K,V>
KafkaProducer<K,V>KafkaProducer. create(Vertx vertx, Map<String,String> config)Create a new KafkaProducer instancestatic <K,V>
KafkaProducer<K,V>KafkaProducer. create(Vertx vertx, Map<String,String> config, Class<K> keyType, Class<V> valueType)Create a new KafkaProducer instancestatic <K,V>
KafkaProducer<K,V>KafkaProducer. createShared(Vertx vertx, String name, KafkaClientOptions options)Get or create a KafkaProducer instance which shares its stream with any other KafkaProducer created with the samenamestatic <K,V>
KafkaProducer<K,V>KafkaProducer. createShared(Vertx vertx, String name, KafkaClientOptions options, Class<K> keyType, Class<V> valueType)Get or create a KafkaProducer instance which shares its stream with any other KafkaProducer created with the samenamestatic <K,V>
KafkaProducer<K,V>KafkaProducer. createShared(Vertx vertx, String name, Map<String,String> config)Get or create a KafkaProducer instance which shares its stream with any other KafkaProducer created with the samenamestatic <K,V>
KafkaProducer<K,V>KafkaProducer. createShared(Vertx vertx, String name, Map<String,String> config, Class<K> keyType, Class<V> valueType)Get or create a KafkaProducer instance which shares its stream with any other KafkaProducer created with the samename -
Uses of Vertx in io.vertx.rxjava.mqtt
Methods in io.vertx.rxjava.mqtt with parameters of type Vertx Modifier and Type Method Description static MqttClientMqttClient. create(Vertx vertx)Return an MQTT client instance using the default optionsstatic MqttClientMqttClient. create(Vertx vertx, MqttClientOptions options)Return an MQTT client instancestatic MqttServerMqttServer. create(Vertx vertx)Return an MQTT server instance using default optionsstatic MqttServerMqttServer. create(Vertx vertx, MqttServerOptions options)Return an MQTT server instance -
Uses of Vertx in io.vertx.rxjava.mssqlclient
Methods in io.vertx.rxjava.mssqlclient with parameters of type Vertx Modifier and Type Method Description static voidMSSQLConnection. connect(Vertx vertx, MSSQLConnectOptions connectOptions)Create a connection to SQL Server with the givenconnectOptions.static voidMSSQLConnection. connect(Vertx vertx, MSSQLConnectOptions connectOptions, Handler<AsyncResult<MSSQLConnection>> handler)Create a connection to SQL Server with the givenconnectOptions.static voidMSSQLConnection. connect(Vertx vertx, String connectionUri)static voidMSSQLConnection. connect(Vertx vertx, String connectionUri, Handler<AsyncResult<MSSQLConnection>> handler)static MSSQLPoolMSSQLPool. pool(Vertx vertx, MSSQLConnectOptions database, PoolOptions options)LikeMSSQLPool.pool(java.lang.String)with a specific instance.static MSSQLPoolMSSQLPool. pool(Vertx vertx, String connectionUri)LikeMSSQLPool.pool(java.lang.String)with default options.static MSSQLPoolMSSQLPool. pool(Vertx vertx, String connectionUri, PoolOptions options)static MSSQLPoolMSSQLPool. pool(Vertx vertx, Supplier<Future<MSSQLConnectOptions>> databases, PoolOptions options)LikeMSSQLPool.pool(java.lang.String)with a specific instance.static MSSQLPoolMSSQLPool. pool(Vertx vertx, List<MSSQLConnectOptions> databases, PoolOptions options)LikeMSSQLPool.pool(java.lang.String)with a specific instance.static rx.Single<MSSQLConnection>MSSQLConnection. rxConnect(Vertx vertx, MSSQLConnectOptions connectOptions)Create a connection to SQL Server with the givenconnectOptions.static rx.Single<MSSQLConnection>MSSQLConnection. rxConnect(Vertx vertx, String connectionUri) -
Uses of Vertx in io.vertx.rxjava.mysqlclient
Methods in io.vertx.rxjava.mysqlclient with parameters of type Vertx Modifier and Type Method Description static SqlClientMySQLPool. client(Vertx vertx, MySQLConnectOptions connectOptions, PoolOptions poolOptions)LikeMySQLPool.client(java.lang.String)with a specific instance.static SqlClientMySQLPool. client(Vertx vertx, String connectionUri)LikeMySQLPool.client(java.lang.String)with a defaultpoolOptions.static SqlClientMySQLPool. client(Vertx vertx, String connectionUri, PoolOptions poolOptions)static SqlClientMySQLPool. client(Vertx vertx, Supplier<Future<MySQLConnectOptions>> mySQLConnectOptions, PoolOptions options)LikeMySQLPool.client(java.lang.String)with a specific instance.static SqlClientMySQLPool. client(Vertx vertx, List<MySQLConnectOptions> mySQLConnectOptions, PoolOptions options)LikeMySQLPool.client(java.lang.String)with a specific instance.static voidMySQLConnection. connect(Vertx vertx, MySQLConnectOptions connectOptions)Create a connection to MySQL server with the givenconnectOptions.static voidMySQLConnection. connect(Vertx vertx, MySQLConnectOptions connectOptions, Handler<AsyncResult<MySQLConnection>> handler)Create a connection to MySQL server with the givenconnectOptions.static voidMySQLConnection. connect(Vertx vertx, String connectionUri)static voidMySQLConnection. connect(Vertx vertx, String connectionUri, Handler<AsyncResult<MySQLConnection>> handler)static MySQLPoolMySQLPool. pool(Vertx vertx, MySQLConnectOptions database, PoolOptions options)LikeMySQLPool.pool(java.lang.String)with a specific instance.static MySQLPoolMySQLPool. pool(Vertx vertx, String connectionUri)LikeMySQLPool.pool(java.lang.String)with default options.static MySQLPoolMySQLPool. pool(Vertx vertx, String connectionUri, PoolOptions options)static MySQLPoolMySQLPool. pool(Vertx vertx, Supplier<Future<MySQLConnectOptions>> databases, PoolOptions options)LikeMySQLPool.pool(java.lang.String)with a specific instance.static MySQLPoolMySQLPool. pool(Vertx vertx, List<MySQLConnectOptions> databases, PoolOptions options)LikeMySQLPool.pool(java.lang.String)with a specific instance.static rx.Single<MySQLConnection>MySQLConnection. rxConnect(Vertx vertx, MySQLConnectOptions connectOptions)Create a connection to MySQL server with the givenconnectOptions.static rx.Single<MySQLConnection>MySQLConnection. rxConnect(Vertx vertx, String connectionUri) -
Uses of Vertx in io.vertx.rxjava.oracleclient
Methods in io.vertx.rxjava.oracleclient with parameters of type Vertx Modifier and Type Method Description static voidOracleConnection. connect(Vertx vertx, OracleConnectOptions connectOptions)Create a connection to Oracle with the givenconnectOptions.static voidOracleConnection. connect(Vertx vertx, OracleConnectOptions connectOptions, Handler<AsyncResult<OracleConnection>> handler)Create a connection to Oracle with the givenconnectOptions.static voidOracleConnection. connect(Vertx vertx, String connectionUri)static voidOracleConnection. connect(Vertx vertx, String connectionUri, Handler<AsyncResult<OracleConnection>> handler)static OraclePoolOraclePool. pool(Vertx vertx, OracleConnectOptions connectOptions, PoolOptions poolOptions)LikeOraclePool.pool(io.vertx.oracleclient.OracleConnectOptions, io.vertx.sqlclient.PoolOptions)with a specific instance.static OraclePoolOraclePool. pool(Vertx vertx, String connectionUri, PoolOptions poolOptions)LikeOraclePool.pool(io.vertx.oracleclient.OracleConnectOptions, io.vertx.sqlclient.PoolOptions)with a specific instance.static OraclePoolOraclePool. pool(Vertx vertx, Supplier<Future<OracleConnectOptions>> databases, PoolOptions poolOptions)LikeOraclePool.pool(io.vertx.oracleclient.OracleConnectOptions, io.vertx.sqlclient.PoolOptions)with a specific instance.static rx.Single<OracleConnection>OracleConnection. rxConnect(Vertx vertx, OracleConnectOptions connectOptions)Create a connection to Oracle with the givenconnectOptions.static rx.Single<OracleConnection>OracleConnection. rxConnect(Vertx vertx, String connectionUri) -
Uses of Vertx in io.vertx.rxjava.pgclient
-
Uses of Vertx in io.vertx.rxjava.pgclient.pubsub
Methods in io.vertx.rxjava.pgclient.pubsub with parameters of type Vertx Modifier and Type Method Description static PgSubscriberPgSubscriber. subscriber(Vertx vertx, PgConnectOptions options)Create a subscriber. -
Uses of Vertx in io.vertx.rxjava.rabbitmq
Methods in io.vertx.rxjava.rabbitmq with parameters of type Vertx Modifier and Type Method Description static RabbitMQClientRabbitMQClient. create(Vertx vertx)Create and return a client configured with the default options.static RabbitMQClientRabbitMQClient. create(Vertx vertx, RabbitMQOptions config)Create and return a client.static RabbitMQPublisherRabbitMQPublisher. create(Vertx vertx, RabbitMQClient client, RabbitMQPublisherOptions options)Create and return a publisher using the specified client. -
Uses of Vertx in io.vertx.rxjava.redis.client
Methods in io.vertx.rxjava.redis.client with parameters of type Vertx Modifier and Type Method Description static RedisRedis. createClient(Vertx vertx)Create a new redis client using the default client options.static RedisRedis. createClient(Vertx vertx, RedisOptions options)Create a new redis client using the given client options.static RedisRedis. createClient(Vertx vertx, String connectionString)Create a new redis client using the default client options. -
Uses of Vertx in io.vertx.rxjava.servicediscovery
Methods in io.vertx.rxjava.servicediscovery with parameters of type Vertx Modifier and Type Method Description static ServiceDiscoveryServiceDiscovery. create(Vertx vertx)Creates a new instance ofServiceDiscoveryusing the default configuration.static ServiceDiscoveryServiceDiscovery. create(Vertx vertx, ServiceDiscoveryOptions options)Creates an instance ofServiceDiscovery. -
Uses of Vertx in io.vertx.rxjava.servicediscovery.spi
Methods in io.vertx.rxjava.servicediscovery.spi with parameters of type Vertx Modifier and Type Method Description voidServiceExporter. init(Vertx vertx, ServicePublisher publisher, JsonObject configuration, Promise<Void> future)Starts the exporter.voidServiceImporter. start(Vertx vertx, ServicePublisher publisher, JsonObject configuration, Promise<Void> future)Starts the importer. -
Uses of Vertx in io.vertx.rxjava.sqlclient
Methods in io.vertx.rxjava.sqlclient with parameters of type Vertx Modifier and Type Method Description static PoolPool. pool(Vertx vertx, SqlConnectOptions database, PoolOptions options)Create a connection pool to thedatabasewith the givenoptions.
-