Uses of Class
io.vertx.rxjava3.core.Vertx
-
-
Uses of Vertx in io.vertx.rxjava3.amqp
Methods in io.vertx.rxjava3.amqp with parameters of type Vertx Modifier and Type Method Description static AmqpClient
AmqpClient. create(Vertx vertx, AmqpClientOptions options)
Creates a new instance ofAmqpClient
with the given Vert.x instance and the given options. -
Uses of Vertx in io.vertx.rxjava3.cassandra
Methods in io.vertx.rxjava3.cassandra with parameters of type Vertx Modifier and Type Method Description static CassandraClient
CassandraClient. create(Vertx vertx)
LikeCassandraClient.create(io.vertx.rxjava3.core.Vertx)
with default options.static CassandraClient
CassandraClient. create(Vertx vertx, CassandraClientOptions options)
Create a Cassandra client which maintains its own driver session.static CassandraClient
CassandraClient. createShared(Vertx vertx)
LikeCassandraClient.createShared(io.vertx.rxjava3.core.Vertx)
with default options and client name.static CassandraClient
CassandraClient. createShared(Vertx vertx, CassandraClientOptions options)
LikeCassandraClient.createShared(io.vertx.rxjava3.core.Vertx)
with default client name.static CassandraClient
CassandraClient. createShared(Vertx vertx, String clientName)
LikeCassandraClient.createShared(io.vertx.rxjava3.core.Vertx)
with default options.static CassandraClient
CassandraClient. 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.rxjava3.circuitbreaker
Methods in io.vertx.rxjava3.circuitbreaker with parameters of type Vertx Modifier and Type Method Description static CircuitBreaker
CircuitBreaker. create(String name, Vertx vertx)
Creates a new instance ofCircuitBreaker
, with default options.static CircuitBreaker
CircuitBreaker. create(String name, Vertx vertx, CircuitBreakerOptions options)
Creates a new instance ofCircuitBreaker
.static HystrixMetricHandler
HystrixMetricHandler. create(Vertx vertx)
Creates the handler, using the default notification address and listening to local messages only.static HystrixMetricHandler
HystrixMetricHandler. create(Vertx vertx, String address)
Creates the handler, listening only to local messages.static HystrixMetricHandler
HystrixMetricHandler. create(Vertx vertx, String address, boolean localOnly)
Creates the handler. -
Uses of Vertx in io.vertx.rxjava3.config
Methods in io.vertx.rxjava3.config with parameters of type Vertx Modifier and Type Method Description static ConfigRetriever
ConfigRetriever. create(Vertx vertx)
Creates an instance of the default implementation of theConfigRetriever
, using the default settings (json file, system properties and environment variables).static ConfigRetriever
ConfigRetriever. create(Vertx vertx, ConfigRetrieverOptions options)
Creates an instance of the default implementation of theConfigRetriever
. -
Uses of Vertx in io.vertx.rxjava3.core
Fields in io.vertx.rxjava3.core declared as Vertx Modifier and Type Field Description protected Vertx
AbstractVerticle. vertx
Fields in io.vertx.rxjava3.core with type parameters of type Vertx Modifier and Type Field Description static TypeArg<Vertx>
Vertx. __TYPE_ARG
Methods in io.vertx.rxjava3.core that return Vertx Modifier and Type Method Description Vertx
VertxBuilder. build()
Creates a non clustered instance.Vertx
Vertx. exceptionHandler(Handler<Throwable> handler)
Set a default exception handler forContext
, set onContext.exceptionHandler(io.vertx.core.Handler<java.lang.Throwable>)
at creation.static Vertx
Vertx. newInstance(Vertx arg)
Vertx
Context. owner()
static Vertx
Vertx. vertx()
Creates a non clustered instance using default options.static Vertx
Vertx. vertx(VertxOptions options)
Creates a non clustered instance using the specified optionsMethods in io.vertx.rxjava3.core that return types with arguments of type Vertx Modifier and Type Method Description io.reactivex.rxjava3.core.Single<Vertx>
VertxBuilder. buildClustered()
Creates a clustered instance.static io.reactivex.rxjava3.core.Single<Vertx>
Vertx. clusteredVertx(VertxOptions options)
Creates a clustered instance using the specified options.io.reactivex.rxjava3.core.Single<Vertx>
VertxBuilder. rxBuildClustered()
Creates a clustered instance.static io.reactivex.rxjava3.core.Single<Vertx>
Vertx. rxClusteredVertx(VertxOptions options)
Creates a clustered instance using the specified options.Methods in io.vertx.rxjava3.core with parameters of type Vertx Modifier and Type Method Description static io.reactivex.rxjava3.core.Scheduler
RxHelper. blockingScheduler(Vertx vertx)
Create a scheduler for aVertx
object, actions can be blocking, they are not executed on Vertx event loop.static io.reactivex.rxjava3.core.Scheduler
RxHelper. blockingScheduler(Vertx vertx, boolean ordered)
Create a scheduler for aVertx
object, actions can be blocking, they are not executed on Vertx event loop.static io.reactivex.rxjava3.core.Single<String>
RxHelper. deployVerticle(Vertx vertx, Verticle verticle)
Deploy a verticle you have created yourself, using an RxJava vertx instance.static io.reactivex.rxjava3.core.Single<String>
RxHelper. deployVerticle(Vertx vertx, Verticle verticle, DeploymentOptions options)
LikeRxHelper.deployVerticle(Vertx, Verticle)
, butDeploymentOptions
are provided to configure the deployment.static io.reactivex.rxjava3.core.Scheduler
RxHelper. scheduler(Vertx vertx)
Create a scheduler for aVertx
object, actions are executed on the event loop. -
Uses of Vertx in io.vertx.rxjava3.db2client
Methods in io.vertx.rxjava3.db2client with parameters of type Vertx Modifier and Type Method Description static SqlClient
DB2Pool. client(Vertx vertx, DB2ConnectOptions database, PoolOptions options)
Deprecated.LikeDB2Pool.client(java.lang.String)
with a specific instance.static SqlClient
DB2Pool. client(Vertx vertx, String connectionUri)
Deprecated.LikeDB2Pool.client(java.lang.String)
with default options.static SqlClient
DB2Pool. client(Vertx vertx, String connectionUri, PoolOptions options)
Deprecated.static SqlClient
DB2Pool. client(Vertx vertx, List<DB2ConnectOptions> databases, PoolOptions options)
Deprecated.LikeDB2Pool.client(java.lang.String)
with a specific instance.static io.reactivex.rxjava3.core.Single<DB2Connection>
DB2Connection. connect(Vertx vertx, DB2ConnectOptions connectOptions)
Create a connection to DB2 server with the givenconnectOptions
.static io.reactivex.rxjava3.core.Single<DB2Connection>
DB2Connection. connect(Vertx vertx, String connectionUri)
LikeDB2Connection.connect(io.vertx.rxjava3.core.Vertx, io.vertx.db2client.DB2ConnectOptions)
with options build fromconnectionUri
.static DB2Pool
DB2Pool. pool(Vertx vertx, DB2ConnectOptions database, PoolOptions options)
Deprecated.LikeDB2Pool.pool(java.lang.String)
with a specific instance.static DB2Pool
DB2Pool. pool(Vertx vertx, String connectionUri)
Deprecated.LikeDB2Pool.pool(java.lang.String)
with default options.static DB2Pool
DB2Pool. pool(Vertx vertx, String connectionUri, PoolOptions options)
Deprecated.static DB2Pool
DB2Pool. pool(Vertx vertx, Supplier<Future<DB2ConnectOptions>> databases, PoolOptions poolOptions)
Deprecated.LikeDB2Pool.pool(java.lang.String)
with a specific instance.static DB2Pool
DB2Pool. pool(Vertx vertx, List<DB2ConnectOptions> databases, PoolOptions options)
Deprecated.LikeDB2Pool.pool(java.lang.String)
with a specific instance.static io.reactivex.rxjava3.core.Single<DB2Connection>
DB2Connection. rxConnect(Vertx vertx, DB2ConnectOptions connectOptions)
Create a connection to DB2 server with the givenconnectOptions
.static io.reactivex.rxjava3.core.Single<DB2Connection>
DB2Connection. rxConnect(Vertx vertx, String connectionUri)
LikeDB2Connection.connect(io.vertx.rxjava3.core.Vertx, io.vertx.db2client.DB2ConnectOptions)
with options build fromconnectionUri
. -
Uses of Vertx in io.vertx.rxjava3.ext.auth
Methods in io.vertx.rxjava3.ext.auth with parameters of type Vertx Modifier and Type Method Description static VertxContextPRNG
VertxContextPRNG. current(Vertx vertx)
Deprecated. -
Uses of Vertx in io.vertx.rxjava3.ext.auth.htdigest
Methods in io.vertx.rxjava3.ext.auth.htdigest with parameters of type Vertx Modifier and Type Method Description static HtdigestAuth
HtdigestAuth. create(Vertx vertx)
Creates an instance of HtdigestAuth.static HtdigestAuth
HtdigestAuth. create(Vertx vertx, String htfile)
Creates an instance of HtdigestAuth by using the given htfile file. -
Uses of Vertx in io.vertx.rxjava3.ext.auth.htpasswd
Methods in io.vertx.rxjava3.ext.auth.htpasswd with parameters of type Vertx Modifier and Type Method Description static HtpasswdAuth
HtpasswdAuth. create(Vertx vertx)
static HtpasswdAuth
HtpasswdAuth. create(Vertx vertx, HtpasswdAuthOptions htpasswdAuthOptions)
-
Uses of Vertx in io.vertx.rxjava3.ext.auth.jwt
Methods in io.vertx.rxjava3.ext.auth.jwt with parameters of type Vertx Modifier and Type Method Description static JWTAuth
JWTAuth. create(Vertx vertx, JWTAuthOptions config)
Create a JWT auth provider -
Uses of Vertx in io.vertx.rxjava3.ext.auth.ldap
Methods in io.vertx.rxjava3.ext.auth.ldap with parameters of type Vertx Modifier and Type Method Description static LdapAuthentication
LdapAuthentication. create(Vertx vertx, LdapAuthenticationOptions options)
Create a LDAP authentication provider -
Uses of Vertx in io.vertx.rxjava3.ext.auth.oauth2
Methods in io.vertx.rxjava3.ext.auth.oauth2 with parameters of type Vertx Modifier and Type Method Description static OAuth2Auth
OAuth2Auth. create(Vertx vertx)
Create a OAuth2 auth provider.static OAuth2Auth
OAuth2Auth. create(Vertx vertx, OAuth2Options config)
Create a OAuth2 auth provider -
Uses of Vertx in io.vertx.rxjava3.ext.auth.oauth2.providers
Methods in io.vertx.rxjava3.ext.auth.oauth2.providers with parameters of type Vertx Modifier and Type Method Description static OAuth2Auth
AmazonCognitoAuth. create(Vertx vertx, String region, String clientId, String clientSecret, String guid)
Create a OAuth2Auth provider for Amazon Cognitostatic OAuth2Auth
AmazonCognitoAuth. create(Vertx vertx, String region, String clientId, String clientSecret, String userPoolId, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Amazon Cognitostatic OAuth2Auth
AzureADAuth. create(Vertx vertx, String clientId, String clientSecret, String guid)
Create a OAuth2Auth provider for Microsoft Azure Active Directorystatic OAuth2Auth
AzureADAuth. create(Vertx vertx, String clientId, String clientSecret, String guid, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Microsoft Azure Active Directorystatic OAuth2Auth
BoxAuth. create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for App.netstatic OAuth2Auth
BoxAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for App.netstatic OAuth2Auth
CloudFoundryAuth. create(Vertx vertx, String clientId, String clientSecret, String uuaURL)
Create a OAuth2Auth provider for CloudFoundry UAAstatic OAuth2Auth
CloudFoundryAuth. create(Vertx vertx, String clientId, String clientSecret, String uuaURL, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for CloudFoundry UAAstatic OAuth2Auth
DropboxAuth. create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for Dropboxstatic OAuth2Auth
DropboxAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Dropboxstatic OAuth2Auth
FacebookAuth. create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for Facebookstatic OAuth2Auth
FacebookAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Facebookstatic OAuth2Auth
FoursquareAuth. create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for Foursquarestatic OAuth2Auth
FoursquareAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Foursquarestatic OAuth2Auth
GiteeAuth. create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for Giteestatic OAuth2Auth
GiteeAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Giteestatic OAuth2Auth
GithubAuth. create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for Githubstatic OAuth2Auth
GithubAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Githubstatic OAuth2Auth
GitLabAuth. create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for GitLab.com.static OAuth2Auth
GitLabAuth. create(Vertx vertx, String site, String clientId, String clientSecret)
Create a OAuth2Auth provider for GitLab.static OAuth2Auth
GitLabAuth. create(Vertx vertx, String site, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for GitLab.static OAuth2Auth
GoogleAuth. create(Vertx vertx, JsonObject serviceAccountJson)
Create a OAuth2Auth provider for Google Service Account (Server to Server)static OAuth2Auth
GoogleAuth. create(Vertx vertx, JsonObject serviceAccountJson, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Google Service Account (Server to Server)static OAuth2Auth
GoogleAuth. create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for Googlestatic OAuth2Auth
GoogleAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Googlestatic OAuth2Auth
HerokuAuth. create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for Herokustatic OAuth2Auth
HerokuAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Herokustatic OAuth2Auth
IBMCloudAuth. create(Vertx vertx, String region, String clientId, String clientSecret, String guid)
Create a OAuth2Auth provider for IBM Cloudstatic OAuth2Auth
IBMCloudAuth. create(Vertx vertx, String region, String clientId, String clientSecret, String guid, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for IBM Cloudstatic OAuth2Auth
InstagramAuth. create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for Instagramstatic OAuth2Auth
InstagramAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Instagramstatic OAuth2Auth
KeycloakAuth. create(Vertx vertx, JsonObject config)
Create a OAuth2Auth provider for Keycloakstatic OAuth2Auth
KeycloakAuth. create(Vertx vertx, JsonObject config, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Keycloakstatic OAuth2Auth
KeycloakAuth. create(Vertx vertx, OAuth2FlowType flow, JsonObject config)
Create a OAuth2Auth provider for Keycloakstatic OAuth2Auth
KeycloakAuth. create(Vertx vertx, OAuth2FlowType flow, JsonObject config, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Keycloakstatic OAuth2Auth
LinkedInAuth. create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for LinkedInstatic OAuth2Auth
LinkedInAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for LinkedInstatic OAuth2Auth
LiveAuth. create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for live.comstatic OAuth2Auth
LiveAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for live.comstatic OAuth2Auth
MailchimpAuth. create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for Mailchimpstatic OAuth2Auth
MailchimpAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Mailchimpstatic OAuth2Auth
SalesforceAuth. create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for Salesforcestatic OAuth2Auth
SalesforceAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Salesforcestatic OAuth2Auth
ShopifyAuth. create(Vertx vertx, String clientId, String clientSecret, String shop)
Create a OAuth2Auth provider for Shopifystatic OAuth2Auth
ShopifyAuth. create(Vertx vertx, String clientId, String clientSecret, String shop, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Shopifystatic OAuth2Auth
SoundcloudAuth. create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for SoundCloudstatic OAuth2Auth
SoundcloudAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for SoundCloudstatic OAuth2Auth
StripeAuth. create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for Stripestatic OAuth2Auth
StripeAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Stripestatic OAuth2Auth
TwitterAuth. create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for Twitterstatic OAuth2Auth
TwitterAuth. create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Twitterstatic io.reactivex.rxjava3.core.Single<OAuth2Auth>
AmazonCognitoAuth. discover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static io.reactivex.rxjava3.core.Single<OAuth2Auth>
AzureADAuth. discover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static io.reactivex.rxjava3.core.Single<OAuth2Auth>
GoogleAuth. discover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static io.reactivex.rxjava3.core.Single<OAuth2Auth>
IBMCloudAuth. discover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static io.reactivex.rxjava3.core.Single<OAuth2Auth>
KeycloakAuth. discover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static io.reactivex.rxjava3.core.Single<OAuth2Auth>
OpenIDConnectAuth. discover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static io.reactivex.rxjava3.core.Single<OAuth2Auth>
SalesforceAuth. discover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static io.reactivex.rxjava3.core.Single<OAuth2Auth>
AmazonCognitoAuth. rxDiscover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static io.reactivex.rxjava3.core.Single<OAuth2Auth>
AzureADAuth. rxDiscover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static io.reactivex.rxjava3.core.Single<OAuth2Auth>
GoogleAuth. rxDiscover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static io.reactivex.rxjava3.core.Single<OAuth2Auth>
IBMCloudAuth. rxDiscover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static io.reactivex.rxjava3.core.Single<OAuth2Auth>
KeycloakAuth. rxDiscover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static io.reactivex.rxjava3.core.Single<OAuth2Auth>
OpenIDConnectAuth. rxDiscover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static io.reactivex.rxjava3.core.Single<OAuth2Auth>
SalesforceAuth. rxDiscover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery. -
Uses of Vertx in io.vertx.rxjava3.ext.auth.prng
Methods in io.vertx.rxjava3.ext.auth.prng with parameters of type Vertx Modifier and Type Method Description static VertxContextPRNG
VertxContextPRNG. 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.rxjava3.ext.auth.properties
Methods in io.vertx.rxjava3.ext.auth.properties with parameters of type Vertx Modifier and Type Method Description static PropertyFileAuthentication
PropertyFileAuthentication. create(Vertx vertx, String path)
Create a File authentication providerstatic PropertyFileAuthorization
PropertyFileAuthorization. create(Vertx vertx, String path)
Create a File authentication provider -
Uses of Vertx in io.vertx.rxjava3.ext.auth.shiro
Methods in io.vertx.rxjava3.ext.auth.shiro with parameters of type Vertx Modifier and Type Method Description static ShiroAuth
ShiroAuth. create(Vertx vertx, ShiroAuthOptions options)
Deprecated. -
Uses of Vertx in io.vertx.rxjava3.ext.auth.webauthn
Methods in io.vertx.rxjava3.ext.auth.webauthn with parameters of type Vertx Modifier and Type Method Description static WebAuthn
WebAuthn. create(Vertx vertx)
Create a WebAuthN auth providerstatic WebAuthn
WebAuthn. create(Vertx vertx, WebAuthnOptions options)
Create a WebAuthN auth provider -
Uses of Vertx in io.vertx.rxjava3.ext.consul
Methods in io.vertx.rxjava3.ext.consul with parameters of type Vertx Modifier and Type Method Description static ConsulClient
ConsulClient. create(Vertx vertx)
Create a Consul client with default options.static ConsulClient
ConsulClient. create(Vertx vertx, ConsulClientOptions options)
Create a Consul client.static Watch<EventList>
Watch. events(String event, Vertx vertx)
CreatesWatch
to monitoring the custom user events.static Watch<EventList>
Watch. events(String event, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring the custom user events.static Watch<KeyValue>
Watch. key(String key, Vertx vertx)
CreatesWatch
to monitoring a specific key in the KV store.static Watch<KeyValue>
Watch. key(String key, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring a specific key in the KV store.static Watch<KeyValueList>
Watch. keyPrefix(String keyPrefix, Vertx vertx)
CreatesWatch
to monitoring a prefix of keys in the KV store.static Watch<KeyValueList>
Watch. keyPrefix(String keyPrefix, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring a prefix of keys in the KV store.static Watch<CheckList>
Watch. nodeHealthChecks(String node, CheckQueryOptions opt, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring the health checks of the nodes.static Watch<NodeList>
Watch. nodes(Vertx vertx)
CreatesWatch
to monitoring the list of available nodes.static Watch<NodeList>
Watch. nodes(Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring the list of available nodes.static Watch<ServiceEntryList>
Watch. service(String service, Vertx vertx)
CreatesWatch
to monitoring the nodes providing the service.static Watch<ServiceEntryList>
Watch. service(String service, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring the nodes providing the service.static Watch<CheckList>
Watch. serviceHealthChecks(String service, CheckQueryOptions checkQueryOptions, Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring the health checks of the nodes.static Watch<ServiceList>
Watch. services(Vertx vertx)
CreatesWatch
to monitoring the list of available services.static Watch<ServiceList>
Watch. services(Vertx vertx, ConsulClientOptions options)
CreatesWatch
to monitoring the list of available services. -
Uses of Vertx in io.vertx.rxjava3.ext.dropwizard
Methods in io.vertx.rxjava3.ext.dropwizard with parameters of type Vertx Modifier and Type Method Description static MetricsService
MetricsService. create(Vertx vertx)
Creates a metric service for a givenVertx
instance. -
Uses of Vertx in io.vertx.rxjava3.ext.eventbus.bridge.tcp
Methods in io.vertx.rxjava3.ext.eventbus.bridge.tcp with parameters of type Vertx Modifier and Type Method Description static TcpEventBusBridge
TcpEventBusBridge. create(Vertx vertx)
static TcpEventBusBridge
TcpEventBusBridge. create(Vertx vertx, BridgeOptions options)
static TcpEventBusBridge
TcpEventBusBridge. create(Vertx vertx, BridgeOptions options, NetServerOptions netServerOptions)
static TcpEventBusBridge
TcpEventBusBridge. create(Vertx vertx, BridgeOptions options, NetServerOptions netServerOptions, Handler<BridgeEvent> eventHandler)
-
Uses of Vertx in io.vertx.rxjava3.ext.healthchecks
Methods in io.vertx.rxjava3.ext.healthchecks with parameters of type Vertx Modifier and Type Method Description static HealthCheckHandler
HealthCheckHandler. create(Vertx vertx)
Creates an instance of the default implementation of theHealthCheckHandler
.static HealthCheckHandler
HealthCheckHandler. create(Vertx vertx, AuthenticationProvider provider)
Creates an instance of the default implementation of theHealthCheckHandler
.static HealthChecks
HealthChecks. create(Vertx vertx)
Creates a new instance of the default implementation ofHealthChecks
. -
Uses of Vertx in io.vertx.rxjava3.ext.mail
Methods in io.vertx.rxjava3.ext.mail with parameters of type Vertx Modifier and Type Method Description static MailClient
MailClient. create(Vertx vertx, MailConfig config)
Create a non shared instance of the mail client.static MailClient
MailClient. createShared(Vertx vertx, MailConfig config)
LikeMailClient.createShared(io.vertx.rxjava3.core.Vertx, io.vertx.ext.mail.MailConfig, java.lang.String)
but with the default pool namestatic MailClient
MailClient. 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.rxjava3.ext.mongo
Methods in io.vertx.rxjava3.ext.mongo with parameters of type Vertx Modifier and Type Method Description static MongoClient
MongoClient. create(Vertx vertx, JsonObject config)
Create a Mongo client which maintains its own data source.static MongoClient
MongoClient. createShared(Vertx vertx, JsonObject config)
LikeMongoClient.createShared(io.vertx.rxjava3.core.Vertx, io.vertx.core.json.JsonObject, java.lang.String)
but with the default data source namestatic MongoClient
MongoClient. 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.rxjava3.ext.shell
Methods in io.vertx.rxjava3.ext.shell with parameters of type Vertx Modifier and Type Method Description static ShellServer
ShellServer. create(Vertx vertx)
Create a new shell server with specific options.static ShellServer
ShellServer. create(Vertx vertx, ShellServerOptions options)
Create a new shell server with default options.static ShellService
ShellService. create(Vertx vertx)
LikeShellService.create(io.vertx.rxjava3.core.Vertx)
, with default options.static ShellService
ShellService. create(Vertx vertx, ShellServiceOptions options)
Create a new shell service. -
Uses of Vertx in io.vertx.rxjava3.ext.shell.cli
Methods in io.vertx.rxjava3.ext.shell.cli that return Vertx Modifier and Type Method Description Vertx
Completion. vertx()
-
Uses of Vertx in io.vertx.rxjava3.ext.shell.command
Methods in io.vertx.rxjava3.ext.shell.command that return Vertx Modifier and Type Method Description Vertx
CommandProcess. vertx()
Methods in io.vertx.rxjava3.ext.shell.command with parameters of type Vertx Modifier and Type Method Description static CommandResolver
CommandResolver. baseCommands(Vertx vertx)
Command
CommandBuilder. build(Vertx vertx)
Build the commandstatic CommandRegistry
CommandRegistry. create(Vertx vertx)
Create a new registry.static CommandRegistry
CommandRegistry. getShared(Vertx vertx)
Get the shared registry for the Vert.x instance. -
Uses of Vertx in io.vertx.rxjava3.ext.shell.term
Methods in io.vertx.rxjava3.ext.shell.term with parameters of type Vertx Modifier and Type Method Description static SockJSTermHandler
SockJSTermHandler. create(Vertx vertx, String charset)
static TermServer
TermServer. createHttpTermServer(Vertx vertx)
Create a term server for the HTTP protocol.static TermServer
TermServer. createHttpTermServer(Vertx vertx, HttpTermOptions options)
Create a term server for the HTTP protocol.static TermServer
TermServer. createHttpTermServer(Vertx vertx, Router router)
Create a term server for the HTTP protocol, using an existing router.static TermServer
TermServer. createHttpTermServer(Vertx vertx, Router router, HttpTermOptions options)
Create a term server for the HTTP protocol, using an existing router.static TermServer
TermServer. createSSHTermServer(Vertx vertx)
Create a term server for the SSH protocol.static TermServer
TermServer. createSSHTermServer(Vertx vertx, SSHTermOptions options)
Create a term server for the SSH protocol.static TermServer
TermServer. createTelnetTermServer(Vertx vertx)
Create a term server for the Telnet protocol.static TermServer
TermServer. createTelnetTermServer(Vertx vertx, TelnetTermOptions options)
Create a term server for the Telnet protocol. -
Uses of Vertx in io.vertx.rxjava3.ext.stomp
Methods in io.vertx.rxjava3.ext.stomp that return Vertx Modifier and Type Method Description Vertx
StompClient. vertx()
Vertx
StompServer. vertx()
Methods in io.vertx.rxjava3.ext.stomp with parameters of type Vertx Modifier and Type Method Description static Destination
Destination. bridge(Vertx vertx, BridgeOptions options)
Destination
DestinationFactory. create(Vertx vertx, String name)
Creates a destination for the given address.static StompClient
StompClient. create(Vertx vertx)
Creates aStompClient
using the default implementation.static StompClient
StompClient. create(Vertx vertx, StompClientOptions options)
Creates aStompClient
using the default implementation.static StompServer
StompServer. create(Vertx vertx)
Creates aStompServer
based on the default Stomp Server implementation, and use the default options.static StompServer
StompServer. create(Vertx vertx, StompServerOptions options)
Creates aStompServer
based on the default Stomp Server implementation.static StompServer
StompServer. create(Vertx vertx, NetServer netServer)
Creates aStompServer
based on the default Stomp Server implementation.static StompServer
StompServer. create(Vertx vertx, NetServer net, StompServerOptions options)
Creates aStompServer
based on the default Stomp Server implementation.static StompServerHandler
StompServerHandler. create(Vertx vertx)
Creates an instance ofStompServerHandler
using the default (compliant) implementation.static Destination
Destination. queue(Vertx vertx, String destination)
static Destination
Destination. topic(Vertx vertx, String destination)
-
Uses of Vertx in io.vertx.rxjava3.ext.unit
Methods in io.vertx.rxjava3.ext.unit with parameters of type Vertx Modifier and Type Method Description TestCompletion
TestSuite. run(Vertx vertx)
Run the testsuite with the default options and the specifiedvertx
instance.TestCompletion
TestSuite. run(Vertx vertx, TestOptions options)
Run the testsuite with the specifiedoptions
and the specifiedvertx
instance. -
Uses of Vertx in io.vertx.rxjava3.ext.unit.collect
Methods in io.vertx.rxjava3.ext.unit.collect with parameters of type Vertx Modifier and Type Method Description static EventBusCollector
EventBusCollector. create(Vertx vertx, Handler<TestSuiteReport> reporter)
static EventBusCollector
EventBusCollector. create(Vertx vertx, ReportingOptions options)
Create a message handler reporting with the specified options. -
Uses of Vertx in io.vertx.rxjava3.ext.web
Methods in io.vertx.rxjava3.ext.web that return Vertx Modifier and Type Method Description Vertx
RoutingContext. vertx()
Methods in io.vertx.rxjava3.ext.web with parameters of type Vertx Modifier and Type Method Description static Router
Router. router(Vertx vertx)
Create a router -
Uses of Vertx in io.vertx.rxjava3.ext.web.api.contract.openapi3
Methods in io.vertx.rxjava3.ext.web.api.contract.openapi3 with parameters of type Vertx Modifier and Type Method Description static io.reactivex.rxjava3.core.Single<OpenAPI3RouterFactory>
OpenAPI3RouterFactory. create(Vertx vertx, String url)
Deprecated.static io.reactivex.rxjava3.core.Single<OpenAPI3RouterFactory>
OpenAPI3RouterFactory. create(Vertx vertx, String url, List<JsonObject> auth)
Deprecated.static io.reactivex.rxjava3.core.Single<OpenAPI3RouterFactory>
OpenAPI3RouterFactory. rxCreate(Vertx vertx, String url)
Deprecated.static io.reactivex.rxjava3.core.Single<OpenAPI3RouterFactory>
OpenAPI3RouterFactory. rxCreate(Vertx vertx, String url, List<JsonObject> auth)
Deprecated. -
Uses of Vertx in io.vertx.rxjava3.ext.web.client
Methods in io.vertx.rxjava3.ext.web.client with parameters of type Vertx Modifier and Type Method Description static WebClient
WebClient. create(Vertx vertx)
Create a web client using the providedvertx
instance and default options.static WebClient
WebClient. create(Vertx vertx, WebClientOptions options)
Create a web client using the providedvertx
instance. -
Uses of Vertx in io.vertx.rxjava3.ext.web.handler
Methods in io.vertx.rxjava3.ext.web.handler with parameters of type Vertx Modifier and Type Method Description static CSRFHandler
CSRFHandler. create(Vertx vertx, String secret)
Instantiate a new CSRFHandlerImpl with a secretstatic DigestAuthHandler
DigestAuthHandler. create(Vertx vertx, HtdigestAuth authProvider)
Create a digest auth handlerstatic DigestAuthHandler
DigestAuthHandler. create(Vertx vertx, HtdigestAuth authProvider, long nonceExpireTimeout)
Create a digest auth handler, specifying the expire timeout for nonces.static ErrorHandler
ErrorHandler. create(Vertx vertx)
Create an error handler using defaultsstatic ErrorHandler
ErrorHandler. create(Vertx vertx, boolean displayExceptionDetails)
Create an error handlerstatic ErrorHandler
ErrorHandler. create(Vertx vertx, String errorTemplateName)
Create an error handlerstatic ErrorHandler
ErrorHandler. create(Vertx vertx, String errorTemplateName, boolean displayExceptionDetails)
Create an error handlerstatic FaviconHandler
FaviconHandler. create(Vertx vertx)
Create a handler with defaultsstatic FaviconHandler
FaviconHandler. create(Vertx vertx, long maxAgeSeconds)
Create a handler with the specified max cache timestatic FaviconHandler
FaviconHandler. create(Vertx vertx, String path)
Create a handler attempting to load favicon file from the specified pathstatic FaviconHandler
FaviconHandler. 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 OAuth2AuthHandler
OAuth2AuthHandler. create(Vertx vertx, OAuth2Auth authProvider)
Create a OAuth2 auth handler without host pinning.static OAuth2AuthHandler
OAuth2AuthHandler. create(Vertx vertx, OAuth2Auth authProvider, String callbackURL)
Create a OAuth2 auth handler with host pinning -
Uses of Vertx in io.vertx.rxjava3.ext.web.handler.graphql
Methods in io.vertx.rxjava3.ext.web.handler.graphql with parameters of type Vertx Modifier and Type Method Description static GraphiQLHandlerBuilder
GraphiQLHandler. builder(Vertx vertx)
Create a newGraphiQLHandlerBuilder
with defaultGraphiQLHandlerOptions
.static GraphiQLHandler
GraphiQLHandler. create(Vertx vertx)
Create a newGraphiQLHandler
.static GraphiQLHandler
GraphiQLHandler. create(Vertx vertx, GraphiQLHandlerOptions options)
Create a newGraphiQLHandler
. -
Uses of Vertx in io.vertx.rxjava3.ext.web.handler.sockjs
Methods in io.vertx.rxjava3.ext.web.handler.sockjs with parameters of type Vertx Modifier and Type Method Description static SockJSHandler
SockJSHandler. create(Vertx vertx)
Create a SockJS handlerstatic SockJSHandler
SockJSHandler. create(Vertx vertx, SockJSHandlerOptions options)
Create a SockJS handler -
Uses of Vertx in io.vertx.rxjava3.ext.web.openapi
Methods in io.vertx.rxjava3.ext.web.openapi with parameters of type Vertx Modifier and Type Method Description static io.reactivex.rxjava3.core.Single<RouterBuilder>
RouterBuilder. create(Vertx vertx, String url)
Likestatic io.reactivex.rxjava3.core.Single<RouterBuilder>
RouterBuilder. create(Vertx vertx, String url, OpenAPILoaderOptions options)
Likestatic io.reactivex.rxjava3.core.Single<RouterBuilder>
RouterBuilder. rxCreate(Vertx vertx, String url)
Likestatic io.reactivex.rxjava3.core.Single<RouterBuilder>
RouterBuilder. rxCreate(Vertx vertx, String url, OpenAPILoaderOptions options)
Like -
Uses of Vertx in io.vertx.rxjava3.ext.web.openapi.router
Methods in io.vertx.rxjava3.ext.web.openapi.router with parameters of type Vertx Modifier and Type Method Description static RouterBuilder
RouterBuilder. create(Vertx vertx, OpenAPIContract contract)
Create a newRouterBuilder
.static RouterBuilder
RouterBuilder. create(Vertx vertx, OpenAPIContract contract, RequestExtractor extractor)
Create a newRouterBuilder
. -
Uses of Vertx in io.vertx.rxjava3.ext.web.sstore
Methods in io.vertx.rxjava3.ext.web.sstore with parameters of type Vertx Modifier and Type Method Description static ClusteredSessionStore
ClusteredSessionStore. create(Vertx vertx)
Create a session storestatic ClusteredSessionStore
ClusteredSessionStore. create(Vertx vertx, long retryTimeout)
Create a session store.static ClusteredSessionStore
ClusteredSessionStore. create(Vertx vertx, String sessionMapName)
Create a session storestatic ClusteredSessionStore
ClusteredSessionStore. create(Vertx vertx, String sessionMapName, long retryTimeout)
Create a session store.static LocalSessionStore
LocalSessionStore. create(Vertx vertx)
Create a session storestatic LocalSessionStore
LocalSessionStore. create(Vertx vertx, String sessionMapName)
Create a session storestatic LocalSessionStore
LocalSessionStore. create(Vertx vertx, String sessionMapName, long reaperInterval)
Create a session storestatic SessionStore
SessionStore. create(Vertx vertx)
Create a Session store given a backend and configuration JSON.static SessionStore
SessionStore. create(Vertx vertx, JsonObject options)
Create a Session store given a backend and configuration JSON.SessionStore
SessionStore. init(Vertx vertx, JsonObject options)
Initialize this store. -
Uses of Vertx in io.vertx.rxjava3.ext.web.sstore.cookie
Methods in io.vertx.rxjava3.ext.web.sstore.cookie with parameters of type Vertx Modifier and Type Method Description static CookieSessionStore
CookieSessionStore. create(Vertx vertx, String secret)
Creates a CookieSessionStore. -
Uses of Vertx in io.vertx.rxjava3.ext.web.sstore.infinispan
Methods in io.vertx.rxjava3.ext.web.sstore.infinispan with parameters of type Vertx Modifier and Type Method Description static InfinispanSessionStore
InfinispanSessionStore. create(Vertx vertx, JsonObject options)
Create a newInfinispanSessionStore
for the given configuration.static InfinispanSessionStore
InfinispanSessionStore. create(Vertx vertx, JsonObject options, org.infinispan.client.hotrod.RemoteCacheManager remoteCacheManager)
LikeInfinispanSessionStore.create(io.vertx.rxjava3.core.Vertx, io.vertx.core.json.JsonObject)
but with a pre-configured Infinispan Client. -
Uses of Vertx in io.vertx.rxjava3.ext.web.sstore.redis
Methods in io.vertx.rxjava3.ext.web.sstore.redis with parameters of type Vertx Modifier and Type Method Description static RedisSessionStore
RedisSessionStore. create(Vertx vertx, long retryTimeoutMs, Redis redis)
Creates a RedisSessionStore with the given retry TO.static RedisSessionStore
RedisSessionStore. create(Vertx vertx, Redis redis)
Creates a RedisSessionStore with the default retry TO. -
Uses of Vertx in io.vertx.rxjava3.ext.web.templ.freemarker
Methods in io.vertx.rxjava3.ext.web.templ.freemarker with parameters of type Vertx Modifier and Type Method Description static FreeMarkerTemplateEngine
FreeMarkerTemplateEngine. create(Vertx vertx)
Create a template engine using defaultsstatic FreeMarkerTemplateEngine
FreeMarkerTemplateEngine. create(Vertx vertx, String extension)
Create a template engine using defaults -
Uses of Vertx in io.vertx.rxjava3.ext.web.templ.handlebars
Methods in io.vertx.rxjava3.ext.web.templ.handlebars with parameters of type Vertx Modifier and Type Method Description static HandlebarsTemplateEngine
HandlebarsTemplateEngine. create(Vertx vertx)
Create a template engine using defaultsstatic HandlebarsTemplateEngine
HandlebarsTemplateEngine. create(Vertx vertx, String extension)
Create a template engine using defaults -
Uses of Vertx in io.vertx.rxjava3.ext.web.templ.jade
Methods in io.vertx.rxjava3.ext.web.templ.jade with parameters of type Vertx Modifier and Type Method Description static JadeTemplateEngine
JadeTemplateEngine. create(Vertx vertx)
Deprecated.static JadeTemplateEngine
JadeTemplateEngine. create(Vertx vertx, String extension)
Deprecated. -
Uses of Vertx in io.vertx.rxjava3.ext.web.templ.mvel
Methods in io.vertx.rxjava3.ext.web.templ.mvel with parameters of type Vertx Modifier and Type Method Description static MVELTemplateEngine
MVELTemplateEngine. create(Vertx vertx)
Create a template engine using defaultsstatic MVELTemplateEngine
MVELTemplateEngine. create(Vertx vertx, String extension)
Create a template engine using defaults -
Uses of Vertx in io.vertx.rxjava3.ext.web.templ.pebble
Methods in io.vertx.rxjava3.ext.web.templ.pebble with parameters of type Vertx Modifier and Type Method Description static PebbleTemplateEngine
PebbleTemplateEngine. create(Vertx vertx)
Create a template engine using defaultsstatic PebbleTemplateEngine
PebbleTemplateEngine. create(Vertx vertx, com.mitchellbosecke.pebble.PebbleEngine engine)
Create a template engine using a custom Builder, e.g.static PebbleTemplateEngine
PebbleTemplateEngine. create(Vertx vertx, String extension)
Create a template engine using defaultsstatic PebbleTemplateEngine
PebbleTemplateEngine. 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.rxjava3.ext.web.templ.thymeleaf
Methods in io.vertx.rxjava3.ext.web.templ.thymeleaf with parameters of type Vertx Modifier and Type Method Description static ThymeleafTemplateEngine
ThymeleafTemplateEngine. create(Vertx vertx)
Create a template engine using defaults -
Uses of Vertx in io.vertx.rxjava3.grpc.client
Methods in io.vertx.rxjava3.grpc.client with parameters of type Vertx Modifier and Type Method Description static GrpcClient
GrpcClient. client(Vertx vertx)
Create a new clientstatic GrpcClient
GrpcClient. client(Vertx vertx, HttpClientOptions options)
Create a new clientstatic GrpcClient
GrpcClient. client(Vertx vertx, GrpcClientOptions options)
Create a new client -
Uses of Vertx in io.vertx.rxjava3.grpc.server
Methods in io.vertx.rxjava3.grpc.server with parameters of type Vertx Modifier and Type Method Description static GrpcServer
GrpcServer. server(Vertx vertx)
Create a blank gRPC serverstatic GrpcServer
GrpcServer. server(Vertx vertx, GrpcServerOptions options)
Create a blank gRPC server -
Uses of Vertx in io.vertx.rxjava3.grpcio.client
Methods in io.vertx.rxjava3.grpcio.client with parameters of type Vertx Modifier and Type Method Description static GrpcIoClient
GrpcIoClient. client(Vertx vertx)
Create a new clientstatic GrpcIoClient
GrpcIoClient. client(Vertx vertx, HttpClientOptions options)
Create a new clientstatic GrpcIoClient
GrpcIoClient. client(Vertx vertx, GrpcClientOptions options)
Create a new client -
Uses of Vertx in io.vertx.rxjava3.grpcio.server
Methods in io.vertx.rxjava3.grpcio.server with parameters of type Vertx Modifier and Type Method Description static GrpcIoServer
GrpcIoServer. server(Vertx vertx)
Create a blank gRPC/IO serverstatic GrpcIoServer
GrpcIoServer. server(Vertx vertx, GrpcServerOptions options)
Create a blank gRPC/IO server -
Uses of Vertx in io.vertx.rxjava3.jdbcclient
Methods in io.vertx.rxjava3.jdbcclient with parameters of type Vertx Modifier and Type Method Description static JDBCPool
JDBCPool. pool(Vertx vertx, JsonObject config)
Deprecated.static JDBCPool
JDBCPool. pool(Vertx vertx, DataSourceProvider dataSourceProvider)
Create a JDBC pool which maintains its own data source.static JDBCPool
JDBCPool. pool(Vertx vertx, JDBCConnectOptions connectOptions, PoolOptions poolOptions)
Create a JDBC pool which maintains its own data source and the#DEFAULT_DATA_SOURCE_PROVIDER default data source provider
.static JDBCPool
JDBCPool. pool(Vertx vertx, JDBCConnectOptions connectOptions, PoolOptions poolOptions, DataSourceProvider provider)
Create a JDBC pool which maintains its own data source, with the specified providerstatic JDBCPool
JDBCPool. pool(Vertx vertx, DataSource dataSource)
Create a JDBC pool using a pre-initialized data source.static JDBCPool
JDBCPool. pool(Vertx vertx, DataSource dataSource, JsonObject config)
Deprecated. -
Uses of Vertx in io.vertx.rxjava3.json.schema
Methods in io.vertx.rxjava3.json.schema with parameters of type Vertx Modifier and Type Method Description static SchemaRouter
SchemaRouter. create(Vertx vertx, SchemaRouterOptions schemaRouterOptions)
Deprecated.static SchemaRouter
SchemaRouter. create(Vertx vertx, HttpClient client, FileSystem fs, SchemaRouterOptions schemaRouterOptions)
Deprecated. -
Uses of Vertx in io.vertx.rxjava3.kafka.admin
Methods in io.vertx.rxjava3.kafka.admin with parameters of type Vertx Modifier and Type Method Description static KafkaAdminClient
KafkaAdminClient. create(Vertx vertx, Map<String,String> config)
Create a new KafkaAdminClient instance -
Uses of Vertx in io.vertx.rxjava3.kafka.client.consumer
Methods in io.vertx.rxjava3.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 instancestatic <K,V>
KafkaConsumer<K,V>KafkaConsumer. create(Vertx vertx, org.apache.kafka.clients.consumer.Consumer<K,V> consumer)
Create a new KafkaConsumer instance from a native .static <K,V>
KafkaConsumer<K,V>KafkaConsumer. create(Vertx vertx, org.apache.kafka.clients.consumer.Consumer<K,V> consumer, KafkaClientOptions options)
Create a new KafkaConsumer instance from a native . -
Uses of Vertx in io.vertx.rxjava3.kafka.client.producer
Methods in io.vertx.rxjava3.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. create(Vertx vertx, org.apache.kafka.clients.producer.Producer<K,V> producer)
Create a new KafkaProducer instance from a native .static <K,V>
KafkaProducer<K,V>KafkaProducer. create(Vertx vertx, org.apache.kafka.clients.producer.Producer<K,V> producer, KafkaClientOptions options)
Create a new KafkaProducer instance from a native .static <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 samename
static <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 samename
static <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 samename
static <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.rxjava3.mqtt
Methods in io.vertx.rxjava3.mqtt with parameters of type Vertx Modifier and Type Method Description static MqttClient
MqttClient. create(Vertx vertx)
Return an MQTT client instance using the default optionsstatic MqttClient
MqttClient. create(Vertx vertx, MqttClientOptions options)
Return an MQTT client instancestatic MqttServer
MqttServer. create(Vertx vertx)
Return an MQTT server instance using default optionsstatic MqttServer
MqttServer. create(Vertx vertx, MqttServerOptions options)
Return an MQTT server instance -
Uses of Vertx in io.vertx.rxjava3.mssqlclient
Methods in io.vertx.rxjava3.mssqlclient with parameters of type Vertx Modifier and Type Method Description static io.reactivex.rxjava3.core.Single<MSSQLConnection>
MSSQLConnection. connect(Vertx vertx, MSSQLConnectOptions connectOptions)
Create a connection to SQL Server with the givenconnectOptions
.static io.reactivex.rxjava3.core.Single<MSSQLConnection>
MSSQLConnection. connect(Vertx vertx, String connectionUri)
LikeMSSQLConnection.connect(io.vertx.rxjava3.core.Vertx, io.vertx.mssqlclient.MSSQLConnectOptions)
with options built fromconnectionUri
.static MSSQLPool
MSSQLPool. pool(Vertx vertx, MSSQLConnectOptions database, PoolOptions options)
Deprecated.LikeMSSQLPool.pool(java.lang.String)
with a specific instance.static MSSQLPool
MSSQLPool. pool(Vertx vertx, String connectionUri)
Deprecated.LikeMSSQLPool.pool(java.lang.String)
with default options.static MSSQLPool
MSSQLPool. pool(Vertx vertx, String connectionUri, PoolOptions options)
Deprecated.static MSSQLPool
MSSQLPool. pool(Vertx vertx, Supplier<Future<MSSQLConnectOptions>> databases, PoolOptions options)
Deprecated.LikeMSSQLPool.pool(java.lang.String)
with a specific instance.static MSSQLPool
MSSQLPool. pool(Vertx vertx, List<MSSQLConnectOptions> databases, PoolOptions options)
Deprecated.LikeMSSQLPool.pool(java.lang.String)
with a specific instance.static io.reactivex.rxjava3.core.Single<MSSQLConnection>
MSSQLConnection. rxConnect(Vertx vertx, MSSQLConnectOptions connectOptions)
Create a connection to SQL Server with the givenconnectOptions
.static io.reactivex.rxjava3.core.Single<MSSQLConnection>
MSSQLConnection. rxConnect(Vertx vertx, String connectionUri)
LikeMSSQLConnection.connect(io.vertx.rxjava3.core.Vertx, io.vertx.mssqlclient.MSSQLConnectOptions)
with options built fromconnectionUri
. -
Uses of Vertx in io.vertx.rxjava3.mysqlclient
Methods in io.vertx.rxjava3.mysqlclient with parameters of type Vertx Modifier and Type Method Description static SqlClient
MySQLPool. client(Vertx vertx, MySQLConnectOptions connectOptions, PoolOptions poolOptions)
Deprecated.LikeMySQLPool.client(java.lang.String)
with a specific instance.static SqlClient
MySQLPool. client(Vertx vertx, String connectionUri)
Deprecated.LikeMySQLPool.client(java.lang.String)
with a defaultpoolOptions
.static SqlClient
MySQLPool. client(Vertx vertx, String connectionUri, PoolOptions poolOptions)
Deprecated.static SqlClient
MySQLPool. client(Vertx vertx, Supplier<Future<MySQLConnectOptions>> mySQLConnectOptions, PoolOptions options)
Deprecated.LikeMySQLPool.client(java.lang.String)
with a specific instance.static SqlClient
MySQLPool. client(Vertx vertx, List<MySQLConnectOptions> mySQLConnectOptions, PoolOptions options)
Deprecated.LikeMySQLPool.client(java.lang.String)
with a specific instance.static io.reactivex.rxjava3.core.Single<MySQLConnection>
MySQLConnection. connect(Vertx vertx, MySQLConnectOptions connectOptions)
Create a connection to MySQL server with the givenconnectOptions
.static io.reactivex.rxjava3.core.Single<MySQLConnection>
MySQLConnection. connect(Vertx vertx, String connectionUri)
LikeMySQLConnection.connect(io.vertx.rxjava3.core.Vertx, io.vertx.mysqlclient.MySQLConnectOptions)
with options built fromconnectionUri
.static MySQLPool
MySQLPool. pool(Vertx vertx, MySQLConnectOptions database, PoolOptions options)
Deprecated.LikeMySQLPool.pool(java.lang.String)
with a specific instance.static MySQLPool
MySQLPool. pool(Vertx vertx, String connectionUri)
Deprecated.LikeMySQLPool.pool(java.lang.String)
with default options.static MySQLPool
MySQLPool. pool(Vertx vertx, String connectionUri, PoolOptions options)
Deprecated.static MySQLPool
MySQLPool. pool(Vertx vertx, Supplier<Future<MySQLConnectOptions>> databases, PoolOptions options)
Deprecated.LikeMySQLPool.pool(java.lang.String)
with a specific instance.static MySQLPool
MySQLPool. pool(Vertx vertx, List<MySQLConnectOptions> databases, PoolOptions options)
Deprecated.LikeMySQLPool.pool(java.lang.String)
with a specific instance.static io.reactivex.rxjava3.core.Single<MySQLConnection>
MySQLConnection. rxConnect(Vertx vertx, MySQLConnectOptions connectOptions)
Create a connection to MySQL server with the givenconnectOptions
.static io.reactivex.rxjava3.core.Single<MySQLConnection>
MySQLConnection. rxConnect(Vertx vertx, String connectionUri)
LikeMySQLConnection.connect(io.vertx.rxjava3.core.Vertx, io.vertx.mysqlclient.MySQLConnectOptions)
with options built fromconnectionUri
. -
Uses of Vertx in io.vertx.rxjava3.openapi.contract
Methods in io.vertx.rxjava3.openapi.contract with parameters of type Vertx Modifier and Type Method Description static io.reactivex.rxjava3.core.Single<OpenAPIContract>
OpenAPIContract. from(Vertx vertx, JsonObject unresolvedContract)
Resolves / dereferences the passed contract and creates anOpenAPIContract
instance.static io.reactivex.rxjava3.core.Single<OpenAPIContract>
OpenAPIContract. from(Vertx vertx, JsonObject unresolvedContract, Map<String,JsonObject> additionalContractFiles)
Resolves / dereferences the passed contract and creates anOpenAPIContract
instance.static io.reactivex.rxjava3.core.Single<OpenAPIContract>
OpenAPIContract. from(Vertx vertx, String unresolvedContractPath)
Resolves / dereferences the passed contract and creates anOpenAPIContract
instance.static io.reactivex.rxjava3.core.Single<OpenAPIContract>
OpenAPIContract. from(Vertx vertx, String unresolvedContractPath, Map<String,String> additionalContractFiles)
Resolves / dereferences the passed contract and creates anOpenAPIContract
instance.static io.reactivex.rxjava3.core.Single<OpenAPIContract>
OpenAPIContract. rxFrom(Vertx vertx, JsonObject unresolvedContract)
Resolves / dereferences the passed contract and creates anOpenAPIContract
instance.static io.reactivex.rxjava3.core.Single<OpenAPIContract>
OpenAPIContract. rxFrom(Vertx vertx, JsonObject unresolvedContract, Map<String,JsonObject> additionalContractFiles)
Resolves / dereferences the passed contract and creates anOpenAPIContract
instance.static io.reactivex.rxjava3.core.Single<OpenAPIContract>
OpenAPIContract. rxFrom(Vertx vertx, String unresolvedContractPath)
Resolves / dereferences the passed contract and creates anOpenAPIContract
instance.static io.reactivex.rxjava3.core.Single<OpenAPIContract>
OpenAPIContract. rxFrom(Vertx vertx, String unresolvedContractPath, Map<String,String> additionalContractFiles)
Resolves / dereferences the passed contract and creates anOpenAPIContract
instance. -
Uses of Vertx in io.vertx.rxjava3.openapi.validation
Methods in io.vertx.rxjava3.openapi.validation with parameters of type Vertx Modifier and Type Method Description static RequestValidator
RequestValidator. create(Vertx vertx, OpenAPIContract contract)
Create a newRequestValidator
. -
Uses of Vertx in io.vertx.rxjava3.oracleclient
Methods in io.vertx.rxjava3.oracleclient with parameters of type Vertx Modifier and Type Method Description static io.reactivex.rxjava3.core.Single<OracleConnection>
OracleConnection. connect(Vertx vertx, OracleConnectOptions connectOptions)
Create a connection to Oracle with the givenconnectOptions
.static io.reactivex.rxjava3.core.Single<OracleConnection>
OracleConnection. connect(Vertx vertx, String connectionUri)
LikeOracleConnection.connect(io.vertx.rxjava3.core.Vertx, io.vertx.oracleclient.OracleConnectOptions)
with options built fromconnectionUri
.static OraclePool
OraclePool. pool(Vertx vertx, OracleConnectOptions connectOptions, PoolOptions poolOptions)
Deprecated.LikeOraclePool.pool(io.vertx.oracleclient.OracleConnectOptions, io.vertx.sqlclient.PoolOptions)
with a specific instance.static OraclePool
OraclePool. pool(Vertx vertx, String connectionUri, PoolOptions poolOptions)
Deprecated.LikeOraclePool.pool(io.vertx.oracleclient.OracleConnectOptions, io.vertx.sqlclient.PoolOptions)
with a specific instance.static OraclePool
OraclePool. pool(Vertx vertx, Supplier<Future<OracleConnectOptions>> databases, PoolOptions poolOptions)
Deprecated.LikeOraclePool.pool(io.vertx.oracleclient.OracleConnectOptions, io.vertx.sqlclient.PoolOptions)
with a specific instance.static io.reactivex.rxjava3.core.Single<OracleConnection>
OracleConnection. rxConnect(Vertx vertx, OracleConnectOptions connectOptions)
Create a connection to Oracle with the givenconnectOptions
.static io.reactivex.rxjava3.core.Single<OracleConnection>
OracleConnection. rxConnect(Vertx vertx, String connectionUri)
LikeOracleConnection.connect(io.vertx.rxjava3.core.Vertx, io.vertx.oracleclient.OracleConnectOptions)
with options built fromconnectionUri
. -
Uses of Vertx in io.vertx.rxjava3.pgclient
Methods in io.vertx.rxjava3.pgclient with parameters of type Vertx Modifier and Type Method Description static SqlClient
PgPool. client(Vertx vertx, PgConnectOptions database, PoolOptions options)
Deprecated.LikePgPool.client()
with a specific instance.static SqlClient
PgPool. client(Vertx vertx, PoolOptions poolOptions)
Deprecated.LikePgPool.client()
withdatabase
retrieved from the environment variables.static SqlClient
PgPool. client(Vertx vertx, String connectionUri)
Deprecated.LikePgPool.client()
with default options.static SqlClient
PgPool. client(Vertx vertx, String connectionUri, PoolOptions options)
Deprecated.static SqlClient
PgPool. client(Vertx vertx, Supplier<Future<PgConnectOptions>> databases, PoolOptions options)
Deprecated.LikePgPool.client()
with a specific instance.static SqlClient
PgPool. client(Vertx vertx, List<PgConnectOptions> databases, PoolOptions options)
Deprecated.LikePgPool.client()
with a specific instance.static io.reactivex.rxjava3.core.Single<PgConnection>
PgConnection. connect(Vertx vertx)
LikePgConnection.connect(io.vertx.rxjava3.core.Vertx, io.vertx.pgclient.PgConnectOptions)
with options build from the environment variables.static io.reactivex.rxjava3.core.Single<PgConnection>
PgConnection. connect(Vertx vertx, PgConnectOptions options)
Connects to the database and returns the connection if that succeeds.static io.reactivex.rxjava3.core.Single<PgConnection>
PgConnection. connect(Vertx vertx, String connectionUri)
LikePgConnection.connect(io.vertx.rxjava3.core.Vertx, io.vertx.pgclient.PgConnectOptions)
with options build fromconnectionUri
.static PgPool
PgPool. pool(Vertx vertx, PgConnectOptions database, PoolOptions options)
Deprecated.LikePgPool.pool()
with a specific instance.static PgPool
PgPool. pool(Vertx vertx, PoolOptions options)
Deprecated.LikePgPool.pool()
with thedatabase
retrieved from the environment variables.static PgPool
PgPool. pool(Vertx vertx, String connectionUri)
Deprecated.LikePgPool.pool()
with default options.static PgPool
PgPool. pool(Vertx vertx, String connectionUri, PoolOptions poolOptions)
Deprecated.static PgPool
PgPool. pool(Vertx vertx, Supplier<Future<PgConnectOptions>> databases, PoolOptions poolOptions)
Deprecated.LikePgPool.pool()
with a specific instance.static PgPool
PgPool. pool(Vertx vertx, List<PgConnectOptions> databases, PoolOptions poolOptions)
Deprecated.LikePgPool.pool()
with a specific instance.static io.reactivex.rxjava3.core.Single<PgConnection>
PgConnection. rxConnect(Vertx vertx)
LikePgConnection.connect(io.vertx.rxjava3.core.Vertx, io.vertx.pgclient.PgConnectOptions)
with options build from the environment variables.static io.reactivex.rxjava3.core.Single<PgConnection>
PgConnection. rxConnect(Vertx vertx, PgConnectOptions options)
Connects to the database and returns the connection if that succeeds.static io.reactivex.rxjava3.core.Single<PgConnection>
PgConnection. rxConnect(Vertx vertx, String connectionUri)
LikePgConnection.connect(io.vertx.rxjava3.core.Vertx, io.vertx.pgclient.PgConnectOptions)
with options build fromconnectionUri
. -
Uses of Vertx in io.vertx.rxjava3.pgclient.pubsub
Methods in io.vertx.rxjava3.pgclient.pubsub with parameters of type Vertx Modifier and Type Method Description static PgSubscriber
PgSubscriber. subscriber(Vertx vertx, PgConnectOptions options)
Create a subscriber. -
Uses of Vertx in io.vertx.rxjava3.rabbitmq
Methods in io.vertx.rxjava3.rabbitmq with parameters of type Vertx Modifier and Type Method Description static RabbitMQClient
RabbitMQClient. create(Vertx vertx)
Create and return a client configured with the default options.static RabbitMQClient
RabbitMQClient. create(Vertx vertx, RabbitMQOptions config)
Create and return a client.static RabbitMQPublisher
RabbitMQPublisher. create(Vertx vertx, RabbitMQClient client, RabbitMQPublisherOptions options)
Create and return a publisher using the specified client. -
Uses of Vertx in io.vertx.rxjava3.redis.client
Methods in io.vertx.rxjava3.redis.client with parameters of type Vertx Modifier and Type Method Description static Redis
Redis. createClient(Vertx vertx)
Create a new redis client using the default client options.static Redis
Redis. createClient(Vertx vertx, RedisOptions options)
Create a new redis client using the given client options.static Redis
Redis. createClient(Vertx vertx, String connectionString)
Create a new redis client using the default client options. -
Uses of Vertx in io.vertx.rxjava3.servicediscovery
Methods in io.vertx.rxjava3.servicediscovery with parameters of type Vertx Modifier and Type Method Description static ServiceDiscovery
ServiceDiscovery. create(Vertx vertx)
Creates a new instance ofServiceDiscovery
using the default configuration.static ServiceDiscovery
ServiceDiscovery. create(Vertx vertx, ServiceDiscoveryOptions options)
Creates an instance ofServiceDiscovery
. -
Uses of Vertx in io.vertx.rxjava3.servicediscovery.spi
Methods in io.vertx.rxjava3.servicediscovery.spi with parameters of type Vertx Modifier and Type Method Description void
ServiceExporter. init(Vertx vertx, ServicePublisher publisher, JsonObject configuration, Promise<Void> future)
Starts the exporter.void
ServiceImporter. start(Vertx vertx, ServicePublisher publisher, JsonObject configuration, Promise<Void> future)
Starts the importer. -
Uses of Vertx in io.vertx.rxjava3.sqlclient
Methods in io.vertx.rxjava3.sqlclient with parameters of type Vertx Modifier and Type Method Description static Pool
Pool. pool(Vertx vertx, SqlConnectOptions database, PoolOptions options)
Create a connection pool to thedatabase
with the givenoptions
.ClientBuilder<C>
ClientBuilder. using(Vertx vertx)
Sets the vertx instance to use.
-