Uses of Class
io.vertx.reactivex.core.Vertx
-
-
Uses of Vertx in io.vertx.junit5.rxjava2
Methods in io.vertx.junit5.rxjava2 that return Vertx Modifier and Type Method Description Vertx
VertxParameterProvider. newInstance(org.junit.jupiter.api.extension.ExtensionContext extensionContext, org.junit.jupiter.api.extension.ParameterContext parameterContext)
Methods in io.vertx.junit5.rxjava2 that return types with arguments of type Vertx Modifier and Type Method Description ParameterClosingConsumer<Vertx>
VertxParameterProvider. parameterClosingConsumer()
Class<Vertx>
VertxParameterProvider. type()
-
Uses of Vertx in io.vertx.reactivex.amqp
Methods in io.vertx.reactivex.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.reactivex.cassandra
Methods in io.vertx.reactivex.cassandra with parameters of type Vertx Modifier and Type Method Description static CassandraClient
CassandraClient. create(Vertx vertx)
LikeCassandraClient.create(io.vertx.reactivex.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.reactivex.core.Vertx)
with default options and client name.static CassandraClient
CassandraClient. createShared(Vertx vertx, CassandraClientOptions options)
LikeCassandraClient.createShared(io.vertx.reactivex.core.Vertx)
with default client name.static CassandraClient
CassandraClient. createShared(Vertx vertx, String clientName)
LikeCassandraClient.createShared(io.vertx.reactivex.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.reactivex.circuitbreaker
Methods in io.vertx.reactivex.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
. -
Uses of Vertx in io.vertx.reactivex.config
Methods in io.vertx.reactivex.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.reactivex.core
Fields in io.vertx.reactivex.core declared as Vertx Modifier and Type Field Description protected Vertx
AbstractVerticle. vertx
Fields in io.vertx.reactivex.core with type parameters of type Vertx Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<Vertx>
Vertx. __TYPE_ARG
Methods in io.vertx.reactivex.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.reactivex.core that return types with arguments of type Vertx Modifier and Type Method Description Future<Vertx>
VertxBuilder. buildClustered()
Creates a clustered instance.static Future<Vertx>
Vertx. clusteredVertx(VertxOptions options)
Creates a clustered instance using the specified options.Single<Vertx>
VertxBuilder. rxBuildClustered()
Creates a clustered instance.static Single<Vertx>
Vertx. rxClusteredVertx(VertxOptions options)
Creates a clustered instance using the specified options.Methods in io.vertx.reactivex.core with parameters of type Vertx Modifier and Type Method Description static Scheduler
RxHelper. blockingScheduler(Vertx vertx)
Create a scheduler for aVertx
object, actions can be blocking, they are not executed on Vertx event loop.static 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 Single<String>
RxHelper. deployVerticle(Vertx vertx, Verticle verticle)
Deploy a verticle you have created yourself, using an RxJava vertx instance.static Single<String>
RxHelper. deployVerticle(Vertx vertx, Verticle verticle, DeploymentOptions options)
LikeRxHelper.deployVerticle(Vertx, Verticle)
, butDeploymentOptions
are provided to configure the deployment.static Scheduler
RxHelper. scheduler(Vertx vertx)
Create a scheduler for aVertx
object, actions are executed on the event loop. -
Uses of Vertx in io.vertx.reactivex.db2client
Methods in io.vertx.reactivex.db2client with parameters of type Vertx Modifier and Type Method Description static Future<DB2Connection>
DB2Connection. connect(Vertx vertx, DB2ConnectOptions connectOptions)
Create a connection to DB2 server with the givenconnectOptions
.static Future<DB2Connection>
DB2Connection. connect(Vertx vertx, String connectionUri)
LikeDB2Connection.connect(io.vertx.reactivex.core.Vertx, io.vertx.db2client.DB2ConnectOptions)
with options build fromconnectionUri
.static Single<DB2Connection>
DB2Connection. rxConnect(Vertx vertx, DB2ConnectOptions connectOptions)
Create a connection to DB2 server with the givenconnectOptions
.static Single<DB2Connection>
DB2Connection. rxConnect(Vertx vertx, String connectionUri)
LikeDB2Connection.connect(io.vertx.reactivex.core.Vertx, io.vertx.db2client.DB2ConnectOptions)
with options build fromconnectionUri
. -
Uses of Vertx in io.vertx.reactivex.ext.auth.htdigest
Methods in io.vertx.reactivex.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.reactivex.ext.auth.htpasswd
Methods in io.vertx.reactivex.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.reactivex.ext.auth.jwt
Methods in io.vertx.reactivex.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.reactivex.ext.auth.ldap
Methods in io.vertx.reactivex.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.reactivex.ext.auth.oauth2
Methods in io.vertx.reactivex.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.reactivex.ext.auth.oauth2.providers
Methods in io.vertx.reactivex.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
AppleIdAuth. create(Vertx vertx, String clientId, String teamId, PubSecKeyOptions privateKey)
Create a OAuth2Auth provider for Applestatic OAuth2Auth
AppleIdAuth. create(Vertx vertx, String clientId, String teamId, PubSecKeyOptions privateKey, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Applestatic 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 Future<OAuth2Auth>
AmazonCognitoAuth. discover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static Future<OAuth2Auth>
AppleIdAuth. discover(Vertx vertx, PubSecKeyOptions privateKey, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static Future<OAuth2Auth>
AzureADAuth. discover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static Future<OAuth2Auth>
GoogleAuth. discover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static Future<OAuth2Auth>
IBMCloudAuth. discover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static Future<OAuth2Auth>
KeycloakAuth. discover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static Future<OAuth2Auth>
OpenIDConnectAuth. discover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static Future<OAuth2Auth>
SalesforceAuth. discover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static Single<OAuth2Auth>
AmazonCognitoAuth. rxDiscover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static Single<OAuth2Auth>
AppleIdAuth. rxDiscover(Vertx vertx, PubSecKeyOptions privateKey, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static Single<OAuth2Auth>
AzureADAuth. rxDiscover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static Single<OAuth2Auth>
GoogleAuth. rxDiscover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static Single<OAuth2Auth>
IBMCloudAuth. rxDiscover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static Single<OAuth2Auth>
KeycloakAuth. rxDiscover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static Single<OAuth2Auth>
OpenIDConnectAuth. rxDiscover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery.static Single<OAuth2Auth>
SalesforceAuth. rxDiscover(Vertx vertx, OAuth2Options config)
Create a OAuth2Auth provider for OpenID Connect Discovery. -
Uses of Vertx in io.vertx.reactivex.ext.auth.prng
Methods in io.vertx.reactivex.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.reactivex.ext.auth.properties
Methods in io.vertx.reactivex.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.reactivex.ext.auth.webauthn4j
Methods in io.vertx.reactivex.ext.auth.webauthn4j with parameters of type Vertx Modifier and Type Method Description static WebAuthn4J
WebAuthn4J. create(Vertx vertx)
Create a WebAuthN auth providerstatic WebAuthn4J
WebAuthn4J. create(Vertx vertx, WebAuthn4JOptions options)
Create a WebAuthN auth provider -
Uses of Vertx in io.vertx.reactivex.ext.consul
Methods in io.vertx.reactivex.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.reactivex.ext.dropwizard
Methods in io.vertx.reactivex.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.reactivex.ext.eventbus.bridge.tcp
Methods in io.vertx.reactivex.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.reactivex.ext.healthchecks
Methods in io.vertx.reactivex.ext.healthchecks with parameters of type Vertx Modifier and Type Method Description static HealthChecks
HealthChecks. create(Vertx vertx)
Creates a new instance of the default implementation ofHealthChecks
. -
Uses of Vertx in io.vertx.reactivex.ext.mail
Methods in io.vertx.reactivex.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.reactivex.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.reactivex.ext.mongo
Methods in io.vertx.reactivex.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.reactivex.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.reactivex.ext.stomp
Methods in io.vertx.reactivex.ext.stomp that return Vertx Modifier and Type Method Description Vertx
StompClient. vertx()
Vertx
StompServer. vertx()
Methods in io.vertx.reactivex.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.reactivex.ext.unit
Methods in io.vertx.reactivex.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.reactivex.ext.unit.collect
Methods in io.vertx.reactivex.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.reactivex.ext.web
Methods in io.vertx.reactivex.ext.web that return Vertx Modifier and Type Method Description Vertx
RoutingContext. vertx()
Methods in io.vertx.reactivex.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.reactivex.ext.web.client
Methods in io.vertx.reactivex.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 and default pooling options.static WebClient
WebClient. create(Vertx vertx, WebClientOptions options, PoolOptions poolOptions)
Create a web client using the providedvertx
instance. -
Uses of Vertx in io.vertx.reactivex.ext.web.handler
Methods in io.vertx.reactivex.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.Most providers will not look to the redirect url but always redirect to the preconfigured callback.static OAuth2AuthHandler
OAuth2AuthHandler. create(Vertx vertx, OAuth2Auth authProvider, String callbackURL)
Create a OAuth2 auth handler with host pinning. -
Uses of Vertx in io.vertx.reactivex.ext.web.handler.graphql
Methods in io.vertx.reactivex.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.reactivex.ext.web.handler.sockjs
Methods in io.vertx.reactivex.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.reactivex.ext.web.healthchecks
Methods in io.vertx.reactivex.ext.web.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
. -
Uses of Vertx in io.vertx.reactivex.ext.web.openapi.router
Methods in io.vertx.reactivex.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.reactivex.ext.web.sstore
Methods in io.vertx.reactivex.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.reactivex.ext.web.sstore.cookie
Methods in io.vertx.reactivex.ext.web.sstore.cookie with parameters of type Vertx Modifier and Type Method Description static CookieSessionStore
CookieSessionStore. create(Vertx vertx, String secret, Buffer salt)
Creates a CookieSessionStore. -
Uses of Vertx in io.vertx.reactivex.ext.web.sstore.infinispan
Methods in io.vertx.reactivex.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.reactivex.core.Vertx, io.vertx.core.json.JsonObject)
but with a pre-configured Infinispan Client. -
Uses of Vertx in io.vertx.reactivex.ext.web.sstore.redis
Methods in io.vertx.reactivex.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.reactivex.ext.web.templ.freemarker
Methods in io.vertx.reactivex.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.reactivex.ext.web.templ.handlebars
Methods in io.vertx.reactivex.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.reactivex.ext.web.templ.mvel
Methods in io.vertx.reactivex.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.reactivex.ext.web.templ.pebble
Methods in io.vertx.reactivex.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, io.pebbletemplates.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, io.pebbletemplates.pebble.PebbleEngine engine)
Create a template engine using a custom Builder, e.g. -
Uses of Vertx in io.vertx.reactivex.ext.web.templ.pug
Methods in io.vertx.reactivex.ext.web.templ.pug with parameters of type Vertx Modifier and Type Method Description static PugTemplateEngine
PugTemplateEngine. create(Vertx vertx)
Create a template engine using defaultsstatic PugTemplateEngine
PugTemplateEngine. create(Vertx vertx, String extension)
Create a template engine using defaultsstatic PugTemplateEngine
PugTemplateEngine. create(Vertx vertx, String extension, String encoding)
Create a template engine using defaults -
Uses of Vertx in io.vertx.reactivex.ext.web.templ.thymeleaf
Methods in io.vertx.reactivex.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.reactivex.grpc.client
Methods in io.vertx.reactivex.grpc.client with parameters of type Vertx Modifier and Type Method Description static GrpcClientBuilder<GrpcClient>
GrpcClient. builder(Vertx vertx)
Provide a builder forGrpcClient
, it can be used to configure advanced client settings like a load balancer or an address resolver.static GrpcClient
GrpcClient. client(Vertx vertx)
Create a client.static GrpcClient
GrpcClient. client(Vertx vertx, HttpClientOptions options)
Create a client with the specifiedoptions
.static GrpcClient
GrpcClient. client(Vertx vertx, GrpcClientOptions options)
Create a client.static GrpcClient
GrpcClient. client(Vertx vertx, GrpcClientOptions grpcOptions, HttpClientOptions httpOptions)
Create a client with the specifiedoptions
.static GrpcClient
GrpcClient. client(Vertx vertx, HttpClient client)
Create a client wrapping an existing . -
Uses of Vertx in io.vertx.reactivex.grpc.server
Methods in io.vertx.reactivex.grpc.server with parameters of type Vertx Modifier and Type Method Description static GrpcServer
GrpcServer. server(Vertx vertx)
Create a blank gRPC server with default options.static GrpcServer
GrpcServer. server(Vertx vertx, GrpcServerOptions options)
Create a blank gRPC server with specified options. -
Uses of Vertx in io.vertx.reactivex.jdbcclient
Methods in io.vertx.reactivex.jdbcclient with parameters of type Vertx Modifier and Type Method Description static Pool
JDBCPool. pool(Vertx vertx, JDBCConnectOptions connectOptions, PoolOptions poolOptions)
Create a JDBC pool which maintains its own data source.static Pool
JDBCPool. pool(Vertx vertx, DataSource dataSource, PoolOptions poolOptions)
Create a JDBC pool using a pre-initialized data source, note this data source does not need to be a pool. -
Uses of Vertx in io.vertx.reactivex.kafka.admin
Methods in io.vertx.reactivex.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.reactivex.kafka.client.consumer
Methods in io.vertx.reactivex.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.reactivex.kafka.client.producer
Methods in io.vertx.reactivex.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.reactivex.mqtt
Methods in io.vertx.reactivex.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.reactivex.mssqlclient
Methods in io.vertx.reactivex.mssqlclient with parameters of type Vertx Modifier and Type Method Description static Future<MSSQLConnection>
MSSQLConnection. connect(Vertx vertx, MSSQLConnectOptions connectOptions)
Create a connection to SQL Server with the givenconnectOptions
.static Future<MSSQLConnection>
MSSQLConnection. connect(Vertx vertx, String connectionUri)
LikeMSSQLConnection.connect(io.vertx.reactivex.core.Vertx, io.vertx.mssqlclient.MSSQLConnectOptions)
with options built fromconnectionUri
.static Single<MSSQLConnection>
MSSQLConnection. rxConnect(Vertx vertx, MSSQLConnectOptions connectOptions)
Create a connection to SQL Server with the givenconnectOptions
.static Single<MSSQLConnection>
MSSQLConnection. rxConnect(Vertx vertx, String connectionUri)
LikeMSSQLConnection.connect(io.vertx.reactivex.core.Vertx, io.vertx.mssqlclient.MSSQLConnectOptions)
with options built fromconnectionUri
. -
Uses of Vertx in io.vertx.reactivex.mysqlclient
Methods in io.vertx.reactivex.mysqlclient with parameters of type Vertx Modifier and Type Method Description static Future<MySQLConnection>
MySQLConnection. connect(Vertx vertx, MySQLConnectOptions connectOptions)
Create a connection to MySQL server with the givenconnectOptions
.static Future<MySQLConnection>
MySQLConnection. connect(Vertx vertx, String connectionUri)
LikeMySQLConnection.connect(io.vertx.reactivex.core.Vertx, io.vertx.mysqlclient.MySQLConnectOptions)
with options built fromconnectionUri
.static Single<MySQLConnection>
MySQLConnection. rxConnect(Vertx vertx, MySQLConnectOptions connectOptions)
Create a connection to MySQL server with the givenconnectOptions
.static Single<MySQLConnection>
MySQLConnection. rxConnect(Vertx vertx, String connectionUri)
LikeMySQLConnection.connect(io.vertx.reactivex.core.Vertx, io.vertx.mysqlclient.MySQLConnectOptions)
with options built fromconnectionUri
. -
Uses of Vertx in io.vertx.reactivex.openapi.contract
Methods in io.vertx.reactivex.openapi.contract with parameters of type Vertx Modifier and Type Method Description static Future<OpenAPIContract>
OpenAPIContract. from(Vertx vertx, JsonObject unresolvedContract)
Resolves / dereferences the passed contract and creates anOpenAPIContract
instance.static Future<OpenAPIContract>
OpenAPIContract. from(Vertx vertx, JsonObject unresolvedContract, Map<String,JsonObject> additionalContractFiles)
Resolves / dereferences the passed contract and creates anOpenAPIContract
instance.static Future<OpenAPIContract>
OpenAPIContract. from(Vertx vertx, String unresolvedContractPath)
Resolves / dereferences the passed contract and creates anOpenAPIContract
instance.static Future<OpenAPIContract>
OpenAPIContract. from(Vertx vertx, String unresolvedContractPath, Map<String,String> additionalContractFiles)
Resolves / dereferences the passed contract and creates anOpenAPIContract
instance.static Single<OpenAPIContract>
OpenAPIContract. rxFrom(Vertx vertx, JsonObject unresolvedContract)
Resolves / dereferences the passed contract and creates anOpenAPIContract
instance.static Single<OpenAPIContract>
OpenAPIContract. rxFrom(Vertx vertx, JsonObject unresolvedContract, Map<String,JsonObject> additionalContractFiles)
Resolves / dereferences the passed contract and creates anOpenAPIContract
instance.static Single<OpenAPIContract>
OpenAPIContract. rxFrom(Vertx vertx, String unresolvedContractPath)
Resolves / dereferences the passed contract and creates anOpenAPIContract
instance.static 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.reactivex.openapi.validation
Methods in io.vertx.reactivex.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.reactivex.oracleclient
Methods in io.vertx.reactivex.oracleclient with parameters of type Vertx Modifier and Type Method Description static Future<OracleConnection>
OracleConnection. connect(Vertx vertx, OracleConnectOptions connectOptions)
Create a connection to Oracle with the givenconnectOptions
.static Future<OracleConnection>
OracleConnection. connect(Vertx vertx, String connectionUri)
LikeOracleConnection.connect(io.vertx.reactivex.core.Vertx, io.vertx.oracleclient.OracleConnectOptions)
with options built fromconnectionUri
.static Single<OracleConnection>
OracleConnection. rxConnect(Vertx vertx, OracleConnectOptions connectOptions)
Create a connection to Oracle with the givenconnectOptions
.static Single<OracleConnection>
OracleConnection. rxConnect(Vertx vertx, String connectionUri)
LikeOracleConnection.connect(io.vertx.reactivex.core.Vertx, io.vertx.oracleclient.OracleConnectOptions)
with options built fromconnectionUri
. -
Uses of Vertx in io.vertx.reactivex.pgclient
Methods in io.vertx.reactivex.pgclient with parameters of type Vertx Modifier and Type Method Description static Future<PgConnection>
PgConnection. connect(Vertx vertx)
LikePgConnection.connect(io.vertx.reactivex.core.Vertx, io.vertx.pgclient.PgConnectOptions)
with options build from the environment variables.static Future<PgConnection>
PgConnection. connect(Vertx vertx, PgConnectOptions options)
Connects to the database and returns the connection if that succeeds.static Future<PgConnection>
PgConnection. connect(Vertx vertx, String connectionUri)
LikePgConnection.connect(io.vertx.reactivex.core.Vertx, io.vertx.pgclient.PgConnectOptions)
with options build fromconnectionUri
.static Single<PgConnection>
PgConnection. rxConnect(Vertx vertx)
LikePgConnection.connect(io.vertx.reactivex.core.Vertx, io.vertx.pgclient.PgConnectOptions)
with options build from the environment variables.static Single<PgConnection>
PgConnection. rxConnect(Vertx vertx, PgConnectOptions options)
Connects to the database and returns the connection if that succeeds.static Single<PgConnection>
PgConnection. rxConnect(Vertx vertx, String connectionUri)
LikePgConnection.connect(io.vertx.reactivex.core.Vertx, io.vertx.pgclient.PgConnectOptions)
with options build fromconnectionUri
. -
Uses of Vertx in io.vertx.reactivex.pgclient.pubsub
Methods in io.vertx.reactivex.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.reactivex.rabbitmq
Methods in io.vertx.reactivex.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.reactivex.redis.client
Methods in io.vertx.reactivex.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.static Redis
Redis. createClusterClient(Vertx vertx, RedisOptions options, java.util.function.Supplier<Future<RedisClusterConnectOptions>> connectOptions)
Creates a new cluster Redis client.static Redis
Redis. createReplicationClient(Vertx vertx, RedisOptions options, java.util.function.Supplier<Future<RedisReplicationConnectOptions>> connectOptions)
Creates a new replication Redis client.static Redis
Redis. createSentinelClient(Vertx vertx, RedisOptions options, java.util.function.Supplier<Future<RedisSentinelConnectOptions>> connectOptions)
Creates a new sentinel Redis client.static Redis
Redis. createStandaloneClient(Vertx vertx, RedisOptions options, java.util.function.Supplier<Future<RedisStandaloneConnectOptions>> connectOptions)
Creates a new standalone Redis client. -
Uses of Vertx in io.vertx.reactivex.servicediscovery
Methods in io.vertx.reactivex.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.reactivex.servicediscovery.spi
Methods in io.vertx.reactivex.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.reactivex.sqlclient
Methods in io.vertx.reactivex.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.
-