Uses of Class
io.vertx.mutiny.core.Vertx
Packages that use Vertx
Package
Description
-
Uses of Vertx in io.smallrye.mutiny.vertx.core
Fields in io.smallrye.mutiny.vertx.core declared as VertxMethods in io.smallrye.mutiny.vertx.core with parameters of type VertxModifier and TypeMethodDescriptionContextAwareScheduler.ContextCaptureStrategy.withGetOrCreateContext(Vertx vertx) Actions will be run on a context that is captured by callinggetOrCreateContext()when a scheduling method is being called likeScheduledExecutorService.schedule(Runnable, long, TimeUnit).ContextAwareScheduler.ContextCaptureStrategy.withGetOrCreateContextOnCurrentThread(Vertx vertx) Actions will be run on a context that is captured by callinggetOrCreateContext()on the thread that is calling this method. -
Uses of Vertx in io.vertx.mutiny.amqp
Methods in io.vertx.mutiny.amqp with parameters of type VertxModifier and TypeMethodDescriptionstatic AmqpClientCreates a new instance ofAmqpClientwith the given Vert.x instance and the given options. -
Uses of Vertx in io.vertx.mutiny.camel
Methods in io.vertx.mutiny.camel with parameters of type VertxModifier and TypeMethodDescriptionstatic CamelBridgeCreates a bridge between Camel endpoints and Vert.x -
Uses of Vertx in io.vertx.mutiny.cassandra
Methods in io.vertx.mutiny.cassandra with parameters of type VertxModifier and TypeMethodDescriptionstatic CassandraClientLikeCassandraClient.create(Vertx, CassandraClientOptions)with default options.static CassandraClientCreate a Cassandra client which maintains its own driver session.static CassandraClientCassandraClient.createShared(Vertx vertx) LikeCassandraClient.createShared(Vertx, String, CassandraClientOptions)with default options and client name.static CassandraClientCassandraClient.createShared(Vertx vertx, io.vertx.cassandra.CassandraClientOptions options) LikeCassandraClient.createShared(Vertx, String, CassandraClientOptions)with default client name.static CassandraClientCassandraClient.createShared(Vertx vertx, String clientName) LikeCassandraClient.createShared(Vertx, String, CassandraClientOptions)with default options.static CassandraClientCassandraClient.createShared(Vertx vertx, String clientName, io.vertx.cassandra.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.mutiny.circuitbreaker
Methods in io.vertx.mutiny.circuitbreaker with parameters of type VertxModifier and TypeMethodDescriptionstatic CircuitBreakerCreates a new instance ofCircuitBreaker, with default options.static CircuitBreakerCircuitBreaker.create(String name, Vertx vertx, io.vertx.circuitbreaker.CircuitBreakerOptions options) Creates a new instance ofCircuitBreaker. -
Uses of Vertx in io.vertx.mutiny.config
Methods in io.vertx.mutiny.config with parameters of type VertxModifier and TypeMethodDescriptionstatic ConfigRetrieverCreates an instance of the default implementation of theConfigRetriever, using the default settings (json file, system properties and environment variables).static ConfigRetrieverCreates an instance of the default implementation of theConfigRetriever. -
Uses of Vertx in io.vertx.mutiny.core
Fields in io.vertx.mutiny.core with type parameters of type VertxMethods in io.vertx.mutiny.core that return VertxModifier and TypeMethodDescriptionVertxBuilder.build()Creates a non clustered instance.VertxBuilder.buildClusteredAndAwait()Creates a clustered instance.Vertx.closeAndForget()Stop the Vertx instance and release any resources held by it.static VertxVertx.clusteredVertxAndAwait(io.vertx.core.VertxOptions options) Creates a clustered instance using the specified options.Vertx.deployVerticleAndForget(io.vertx.core.Deployable verticle) Deploy a verticle instance that you have created yourself.Vertx.deployVerticleAndForget(io.vertx.core.Deployable verticle, io.vertx.core.DeploymentOptions options) LikedeployVerticle(Deployable)butDeploymentOptionsare provided to configure the deployment.Vertx.deployVerticleAndForget(String name) Deploy a verticle instance given a name.Vertx.deployVerticleAndForget(String name, io.vertx.core.DeploymentOptions options) LikedeployVerticle(Deployable)butDeploymentOptionsare provided to configure the deployment.Vertx.deployVerticleAndForget(Supplier<? extends io.vertx.core.Deployable> supplier, io.vertx.core.DeploymentOptions options) LikedeployVerticle(Deployable, DeploymentOptions)butDeployableinstance is created by invoking theverticleSupplier.Vertx.exceptionHandler(Consumer<Throwable> handler) Set a default exception handler forContext, set onContext#exceptionHandler(Handler)at creation.<T> VertxVertx.executeBlockingAndForget(Callable<T> blockingCodeHandler) LikeexecuteBlocking(Callable, boolean)called with ordered = true.<T> VertxVertx.executeBlockingAndForget(Callable<T> blockingCodeHandler, boolean ordered) Safely execute some blocking code.static VertxVertx.newInstance(io.vertx.core.Vertx delegate) Creates a new instance of theVertx.Context.owner()Vertx.undeployAndForget(String deploymentID) Undeploy a verticle deployment.static VertxVertx.vertx()Creates a non clustered instance using default options.static VertxVertx.vertx(io.vertx.core.VertxOptions options) Creates a non clustered instance using the specified optionsMethods in io.vertx.mutiny.core that return types with arguments of type VertxModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<Vertx>VertxBuilder.buildClustered()Creates a clustered instance.static io.smallrye.mutiny.Uni<Vertx>Vertx.clusteredVertx(io.vertx.core.VertxOptions options) Creates a clustered instance using the specified options. -
Uses of Vertx in io.vertx.mutiny.db2client
Methods in io.vertx.mutiny.db2client with parameters of type VertxModifier and TypeMethodDescriptionstatic io.smallrye.mutiny.Uni<DB2Connection>Create a connection to DB2 server with the givenconnectOptions.static io.smallrye.mutiny.Uni<DB2Connection>LikeDB2Connection.connect(Vertx, DB2ConnectOptions)with options build fromconnectionUri.static DB2ConnectionDB2Connection.connectAndAwait(Vertx vertx, io.vertx.db2client.DB2ConnectOptions connectOptions) Create a connection to DB2 server with the givenconnectOptions.static DB2ConnectionDB2Connection.connectAndAwait(Vertx vertx, String connectionUri) LikeDB2Connection.connect(Vertx, DB2ConnectOptions)with options build fromconnectionUri.static voidDB2Connection.connectAndForget(Vertx vertx, io.vertx.db2client.DB2ConnectOptions connectOptions) Create a connection to DB2 server with the givenconnectOptions.static voidDB2Connection.connectAndForget(Vertx vertx, String connectionUri) LikeDB2Connection.connect(Vertx, DB2ConnectOptions)with options build fromconnectionUri. -
Uses of Vertx in io.vertx.mutiny.ext.auth.htdigest
Methods in io.vertx.mutiny.ext.auth.htdigest with parameters of type VertxModifier and TypeMethodDescriptionstatic HtdigestAuthCreates an instance of HtdigestAuth.static HtdigestAuthCreates an instance of HtdigestAuth by using the given htfile file. -
Uses of Vertx in io.vertx.mutiny.ext.auth.htpasswd
Methods in io.vertx.mutiny.ext.auth.htpasswd with parameters of type VertxModifier and TypeMethodDescriptionstatic HtpasswdAuthstatic HtpasswdAuthHtpasswdAuth.create(Vertx vertx, io.vertx.ext.auth.htpasswd.HtpasswdAuthOptions htpasswdAuthOptions) -
Uses of Vertx in io.vertx.mutiny.ext.auth.jwt
Methods in io.vertx.mutiny.ext.auth.jwt with parameters of type Vertx -
Uses of Vertx in io.vertx.mutiny.ext.auth.ldap
Methods in io.vertx.mutiny.ext.auth.ldap with parameters of type VertxModifier and TypeMethodDescriptionstatic LdapAuthenticationCreate a LDAP authentication provider -
Uses of Vertx in io.vertx.mutiny.ext.auth.oauth2
Methods in io.vertx.mutiny.ext.auth.oauth2 with parameters of type VertxModifier and TypeMethodDescriptionstatic OAuth2AuthCreate a OAuth2 auth provider.static OAuth2AuthCreate a OAuth2 auth provider -
Uses of Vertx in io.vertx.mutiny.ext.auth.oauth2.providers
Methods in io.vertx.mutiny.ext.auth.oauth2.providers with parameters of type VertxModifier and TypeMethodDescriptionstatic OAuth2AuthAmazonCognitoAuth.create(Vertx vertx, String region, String clientId, String clientSecret, String domain, String guid) Create a OAuth2Auth provider for Amazon Cognitostatic OAuth2AuthAmazonCognitoAuth.create(Vertx vertx, String region, String clientId, String clientSecret, String domain, String userPoolId, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Amazon Cognitostatic OAuth2AuthAppleIdAuth.create(Vertx vertx, String clientId, String teamId, io.vertx.ext.auth.PubSecKeyOptions privateKey) Create a OAuth2Auth provider for Applestatic OAuth2AuthAppleIdAuth.create(Vertx vertx, String clientId, String teamId, io.vertx.ext.auth.PubSecKeyOptions privateKey, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Applestatic OAuth2AuthCreate a OAuth2Auth provider for Microsoft Azure Active Directorystatic OAuth2AuthAzureADAuth.create(Vertx vertx, String clientId, String clientSecret, String guid, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Microsoft Azure Active Directorystatic OAuth2AuthCreate a OAuth2Auth provider for App.netstatic OAuth2AuthBoxAuth.create(Vertx vertx, String clientId, String clientSecret, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for App.netstatic OAuth2AuthCreate a OAuth2Auth provider for CloudFoundry UAAstatic OAuth2AuthCloudFoundryAuth.create(Vertx vertx, String clientId, String clientSecret, String uuaURL, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for CloudFoundry UAAstatic OAuth2AuthCreate a OAuth2Auth provider for Dropboxstatic OAuth2AuthDropboxAuth.create(Vertx vertx, String clientId, String clientSecret, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Dropboxstatic OAuth2AuthCreate a OAuth2Auth provider for Facebookstatic OAuth2AuthFacebookAuth.create(Vertx vertx, String clientId, String clientSecret, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Facebookstatic OAuth2AuthCreate a OAuth2Auth provider for Foursquarestatic OAuth2AuthFoursquareAuth.create(Vertx vertx, String clientId, String clientSecret, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Foursquarestatic OAuth2AuthCreate a OAuth2Auth provider for Giteestatic OAuth2AuthGiteeAuth.create(Vertx vertx, String clientId, String clientSecret, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Giteestatic OAuth2AuthCreate a OAuth2Auth provider for Githubstatic OAuth2AuthGithubAuth.create(Vertx vertx, String clientId, String clientSecret, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Githubstatic OAuth2AuthCreate a OAuth2Auth provider for GitLab.com.static OAuth2AuthCreate a OAuth2Auth provider for GitLab.static OAuth2AuthGitLabAuth.create(Vertx vertx, String site, String clientId, String clientSecret, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for GitLab.static OAuth2AuthCreate a OAuth2Auth provider for Google Service Account (Server to Server)static OAuth2AuthGoogleAuth.create(Vertx vertx, io.vertx.core.json.JsonObject serviceAccountJson, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Google Service Account (Server to Server)static OAuth2AuthCreate a OAuth2Auth provider for Googlestatic OAuth2AuthGoogleAuth.create(Vertx vertx, String clientId, String clientSecret, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Googlestatic OAuth2AuthCreate a OAuth2Auth provider for Herokustatic OAuth2AuthHerokuAuth.create(Vertx vertx, String clientId, String clientSecret, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Herokustatic OAuth2AuthCreate a OAuth2Auth provider for IBM Cloudstatic OAuth2AuthIBMCloudAuth.create(Vertx vertx, String region, String clientId, String clientSecret, String guid, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for IBM Cloudstatic OAuth2AuthCreate a OAuth2Auth provider for Instagramstatic OAuth2AuthInstagramAuth.create(Vertx vertx, String clientId, String clientSecret, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Instagramstatic OAuth2AuthCreate a OAuth2Auth provider for Keycloakstatic OAuth2AuthKeycloakAuth.create(Vertx vertx, io.vertx.core.json.JsonObject config, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Keycloakstatic OAuth2AuthKeycloakAuth.create(Vertx vertx, io.vertx.ext.auth.oauth2.OAuth2FlowType flow, io.vertx.core.json.JsonObject config) Create a OAuth2Auth provider for Keycloakstatic OAuth2AuthKeycloakAuth.create(Vertx vertx, io.vertx.ext.auth.oauth2.OAuth2FlowType flow, io.vertx.core.json.JsonObject config, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Keycloakstatic OAuth2AuthCreate a OAuth2Auth provider for LinkedInstatic OAuth2AuthLinkedInAuth.create(Vertx vertx, String clientId, String clientSecret, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for LinkedInstatic OAuth2AuthCreate a OAuth2Auth provider for live.comstatic OAuth2AuthLiveAuth.create(Vertx vertx, String clientId, String clientSecret, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for live.comstatic OAuth2AuthCreate a OAuth2Auth provider for Mailchimpstatic OAuth2AuthMailchimpAuth.create(Vertx vertx, String clientId, String clientSecret, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Mailchimpstatic OAuth2AuthCreate a OAuth2Auth provider for Salesforcestatic OAuth2AuthSalesforceAuth.create(Vertx vertx, String clientId, String clientSecret, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Salesforcestatic OAuth2AuthCreate a OAuth2Auth provider for Shopifystatic OAuth2AuthShopifyAuth.create(Vertx vertx, String clientId, String clientSecret, String shop, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Shopifystatic OAuth2AuthCreate a OAuth2Auth provider for SoundCloudstatic OAuth2AuthSoundcloudAuth.create(Vertx vertx, String clientId, String clientSecret, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for SoundCloudstatic OAuth2AuthCreate a OAuth2Auth provider for Stripestatic OAuth2AuthStripeAuth.create(Vertx vertx, String clientId, String clientSecret, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Stripestatic OAuth2AuthCreate a OAuth2Auth provider for Twitterstatic OAuth2AuthTwitterAuth.create(Vertx vertx, String clientId, String clientSecret, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Twitterstatic OAuth2AuthCreate a OAuth2Auth provider for Zoho (default DC)static OAuth2AuthZohoAuth.create(Vertx vertx, String dc, String clientId, String clientSecret, String soid, io.vertx.core.http.HttpClientOptions httpClientOptions) Create a OAuth2Auth provider for Zohostatic io.smallrye.mutiny.Uni<OAuth2Auth>Create a OAuth2Auth provider for OpenID Connect Discovery.static io.smallrye.mutiny.Uni<OAuth2Auth>AppleIdAuth.discover(Vertx vertx, io.vertx.ext.auth.PubSecKeyOptions privateKey, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static io.smallrye.mutiny.Uni<OAuth2Auth>Create a OAuth2Auth provider for OpenID Connect Discovery.static io.smallrye.mutiny.Uni<OAuth2Auth>Create a OAuth2Auth provider for OpenID Connect Discovery.static io.smallrye.mutiny.Uni<OAuth2Auth>Create a OAuth2Auth provider for OpenID Connect Discovery.static io.smallrye.mutiny.Uni<OAuth2Auth>Create a OAuth2Auth provider for OpenID Connect Discovery.static io.smallrye.mutiny.Uni<OAuth2Auth>Create a OAuth2Auth provider for OpenID Connect Discovery.static io.smallrye.mutiny.Uni<OAuth2Auth>Create a OAuth2Auth provider for OpenID Connect Discovery.static io.smallrye.mutiny.Uni<OAuth2Auth>Create a OAuth2Auth provider for OpenID Connect Discovery.static io.smallrye.mutiny.Uni<OAuth2Auth>ZohoAuth.discover(Vertx vertx, String dc, String soid, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static OAuth2AuthAmazonCognitoAuth.discoverAndAwait(Vertx vertx, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static OAuth2AuthAppleIdAuth.discoverAndAwait(Vertx vertx, io.vertx.ext.auth.PubSecKeyOptions privateKey, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static OAuth2AuthAzureADAuth.discoverAndAwait(Vertx vertx, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static OAuth2AuthGoogleAuth.discoverAndAwait(Vertx vertx, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static OAuth2AuthIBMCloudAuth.discoverAndAwait(Vertx vertx, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static OAuth2AuthKeycloakAuth.discoverAndAwait(Vertx vertx, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static OAuth2AuthOpenIDConnectAuth.discoverAndAwait(Vertx vertx, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static OAuth2AuthSalesforceAuth.discoverAndAwait(Vertx vertx, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static OAuth2AuthZohoAuth.discoverAndAwait(Vertx vertx, String soid, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static OAuth2AuthZohoAuth.discoverAndAwait(Vertx vertx, String dc, String soid, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static voidAmazonCognitoAuth.discoverAndForget(Vertx vertx, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static voidAppleIdAuth.discoverAndForget(Vertx vertx, io.vertx.ext.auth.PubSecKeyOptions privateKey, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static voidAzureADAuth.discoverAndForget(Vertx vertx, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static voidGoogleAuth.discoverAndForget(Vertx vertx, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static voidIBMCloudAuth.discoverAndForget(Vertx vertx, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static voidKeycloakAuth.discoverAndForget(Vertx vertx, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static voidOpenIDConnectAuth.discoverAndForget(Vertx vertx, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static voidSalesforceAuth.discoverAndForget(Vertx vertx, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static voidZohoAuth.discoverAndForget(Vertx vertx, String soid, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery.static voidZohoAuth.discoverAndForget(Vertx vertx, String dc, String soid, io.vertx.ext.auth.oauth2.OAuth2Options config) Create a OAuth2Auth provider for OpenID Connect Discovery. -
Uses of Vertx in io.vertx.mutiny.ext.auth.prng
Methods in io.vertx.mutiny.ext.auth.prng with parameters of type VertxModifier and TypeMethodDescriptionstatic VertxContextPRNGGet or create a secure non blocking random number generator using the current vert.x instance. -
Uses of Vertx in io.vertx.mutiny.ext.auth.properties
Methods in io.vertx.mutiny.ext.auth.properties with parameters of type VertxModifier and TypeMethodDescriptionstatic PropertyFileAuthenticationCreate a File authentication providerstatic PropertyFileAuthorizationCreate a File authentication provider -
Uses of Vertx in io.vertx.mutiny.ext.auth.webauthn4j
Methods in io.vertx.mutiny.ext.auth.webauthn4j with parameters of type VertxModifier and TypeMethodDescriptionstatic WebAuthn4JCreate a WebAuthN auth providerstatic WebAuthn4JCreate a WebAuthN auth provider -
Uses of Vertx in io.vertx.mutiny.ext.consul
Methods in io.vertx.mutiny.ext.consul with parameters of type VertxModifier and TypeMethodDescriptionstatic ConsulClientCreate a Consul client with default options.static ConsulClientCreate a Consul client.static Watch<io.vertx.ext.consul.EventList>CreatesWatchto monitoring the custom user events.static Watch<io.vertx.ext.consul.EventList>CreatesWatchto monitoring the custom user events.static Watch<io.vertx.ext.consul.KeyValue>CreatesWatchto monitoring a specific key in the KV store.static Watch<io.vertx.ext.consul.KeyValue>CreatesWatchto monitoring a specific key in the KV store.static Watch<io.vertx.ext.consul.KeyValueList>CreatesWatchto monitoring a prefix of keys in the KV store.static Watch<io.vertx.ext.consul.KeyValueList>CreatesWatchto monitoring a prefix of keys in the KV store.static Watch<io.vertx.ext.consul.CheckList>Watch.nodeHealthChecks(String node, io.vertx.ext.consul.CheckQueryOptions opt, Vertx vertx, io.vertx.ext.consul.ConsulClientOptions options) CreatesWatchto monitoring the health checks of the nodes.static Watch<io.vertx.ext.consul.NodeList>CreatesWatchto monitoring the list of available nodes.static Watch<io.vertx.ext.consul.NodeList>CreatesWatchto monitoring the list of available nodes.static Watch<io.vertx.ext.consul.ServiceEntryList>CreatesWatchto monitoring the nodes providing the service.static Watch<io.vertx.ext.consul.ServiceEntryList>CreatesWatchto monitoring the nodes providing the service.static Watch<io.vertx.ext.consul.CheckList>Watch.serviceHealthChecks(String service, io.vertx.ext.consul.CheckQueryOptions checkQueryOptions, Vertx vertx, io.vertx.ext.consul.ConsulClientOptions options) CreatesWatchto monitoring the health checks of the nodes.static Watch<io.vertx.ext.consul.ServiceList>CreatesWatchto monitoring the list of available services.static Watch<io.vertx.ext.consul.ServiceList>CreatesWatchto monitoring the list of available services. -
Uses of Vertx in io.vertx.mutiny.ext.eventbus.bridge.tcp
Methods in io.vertx.mutiny.ext.eventbus.bridge.tcp with parameters of type VertxModifier and TypeMethodDescriptionstatic TcpEventBusBridgestatic TcpEventBusBridgestatic TcpEventBusBridgeTcpEventBusBridge.create(Vertx vertx, io.vertx.ext.bridge.BridgeOptions options, io.vertx.core.net.NetServerOptions netServerOptions) static TcpEventBusBridgeTcpEventBusBridge.create(Vertx vertx, io.vertx.ext.bridge.BridgeOptions options, io.vertx.core.net.NetServerOptions netServerOptions, Consumer<BridgeEvent> eventHandler) -
Uses of Vertx in io.vertx.mutiny.ext.healthchecks
Methods in io.vertx.mutiny.ext.healthchecks with parameters of type VertxModifier and TypeMethodDescriptionstatic HealthChecksCreates a new instance of the default implementation ofHealthChecks. -
Uses of Vertx in io.vertx.mutiny.ext.mail
Methods in io.vertx.mutiny.ext.mail with parameters of type VertxModifier and TypeMethodDescriptionstatic MailClientBuilderProvide a builder forMailClient.static MailClientCreate a non shared instance of the mail client.static MailClientMailClient.createShared(Vertx vertx, io.vertx.ext.mail.MailConfig config) LikeMailClient.createShared(io.vertx.mutiny.core.Vertx, MailConfig, String)but with the default pool namestatic MailClientMailClient.createShared(Vertx vertx, io.vertx.ext.mail.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.mutiny.ext.mongo
Methods in io.vertx.mutiny.ext.mongo with parameters of type VertxModifier and TypeMethodDescriptionstatic MongoClientCreate a Mongo client which maintains its own data source.static MongoClientMongoClient.createShared(Vertx vertx, io.vertx.core.json.JsonObject config) LikeMongoClient.createShared(io.vertx.mutiny.core.Vertx, JsonObject, String)but with the default data source namestatic MongoClientMongoClient.createShared(Vertx vertx, io.vertx.core.json.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.mutiny.ext.web
Methods in io.vertx.mutiny.ext.web that return VertxMethods in io.vertx.mutiny.ext.web with parameters of type Vertx -
Uses of Vertx in io.vertx.mutiny.ext.web.client
Methods in io.vertx.mutiny.ext.web.client with parameters of type VertxModifier and TypeMethodDescriptionstatic WebClientCreate a web client using the providedvertxinstance and default options.static WebClientCreate a web client using the providedvertxinstance and default pooling options.static WebClientWebClient.create(Vertx vertx, io.vertx.ext.web.client.WebClientConfig config, io.vertx.core.http.PoolOptions poolOptions) Create a web client using the providedvertxinstance.static WebClientWebClient.create(Vertx vertx, io.vertx.ext.web.client.WebClientConfig config, io.vertx.core.net.ClientSSLOptions sslOptions) Create a web client using the providedvertxinstance, SSL options and default pooling options.static WebClientWebClient.create(Vertx vertx, io.vertx.ext.web.client.WebClientConfig config, io.vertx.core.net.ClientSSLOptions sslOptions, io.vertx.core.http.PoolOptions poolOptions) Create a web client using the providedvertxinstance and SSL options.static WebClientCreate a web client using the providedvertxinstance and default pooling options.static WebClientWebClient.create(Vertx vertx, io.vertx.ext.web.client.WebClientOptions options, io.vertx.core.http.PoolOptions poolOptions) Create a web client using the providedvertxinstance. -
Uses of Vertx in io.vertx.mutiny.ext.web.handler
Methods in io.vertx.mutiny.ext.web.handler with parameters of type VertxModifier and TypeMethodDescriptionstatic CSRFHandlerInstantiate a new CSRFHandlerImpl with a secretstatic DigestAuthHandlerDigestAuthHandler.create(Vertx vertx, HtdigestAuth authProvider) Create a digest auth handlerstatic DigestAuthHandlerDigestAuthHandler.create(Vertx vertx, HtdigestAuth authProvider, long nonceExpireTimeout) Create a digest auth handler, specifying the expire timeout for nonces.static ErrorHandlerCreate an error handler using defaultsstatic ErrorHandlerCreate an error handlerstatic ErrorHandlerCreate an error handlerstatic ErrorHandlerCreate an error handlerstatic FaviconHandlerCreate a handler with defaultsstatic FaviconHandlerCreate a handler with the specified max cache timestatic FaviconHandlerCreate a handler attempting to load favicon file from the specified pathstatic FaviconHandlerCreate a handler attempting to load favicon file from the specified path, and with the specified max cache timestatic OAuth2AuthHandlerOAuth2AuthHandler.create(Vertx vertx, OAuth2Auth authProvider) Create a OAuth2 auth handler without host pinning.Most providers will not look to the redirect url but always redirect to the preconfigured callback.static OAuth2AuthHandlerOAuth2AuthHandler.create(Vertx vertx, OAuth2Auth authProvider, String callbackURL) Create a OAuth2 auth handler with host pinning. -
Uses of Vertx in io.vertx.mutiny.ext.web.handler.graphql
Methods in io.vertx.mutiny.ext.web.handler.graphql with parameters of type VertxModifier and TypeMethodDescriptionstatic GraphiQLHandlerBuilderCreate a newGraphiQLHandlerBuilderwith defaultGraphiQLHandlerOptions.static GraphiQLHandlerCreate a newGraphiQLHandler.static GraphiQLHandlerGraphiQLHandler.create(Vertx vertx, io.vertx.ext.web.handler.graphql.GraphiQLHandlerOptions options) Create a newGraphiQLHandler. -
Uses of Vertx in io.vertx.mutiny.ext.web.handler.sockjs
Methods in io.vertx.mutiny.ext.web.handler.sockjs with parameters of type VertxModifier and TypeMethodDescriptionstatic SockJSHandlerCreate a SockJS handlerstatic SockJSHandlerCreate a SockJS handler -
Uses of Vertx in io.vertx.mutiny.ext.web.healthchecks
Methods in io.vertx.mutiny.ext.web.healthchecks with parameters of type VertxModifier and TypeMethodDescriptionstatic HealthCheckHandlerCreates an instance of the default implementation of theHealthCheckHandler.static HealthCheckHandlerHealthCheckHandler.create(Vertx vertx, AuthenticationProvider provider) Creates an instance of the default implementation of theHealthCheckHandler. -
Uses of Vertx in io.vertx.mutiny.ext.web.sstore
Methods in io.vertx.mutiny.ext.web.sstore with parameters of type VertxModifier and TypeMethodDescriptionstatic ClusteredSessionStoreCreate a session storestatic ClusteredSessionStoreCreate a session store.static ClusteredSessionStoreCreate a session storestatic ClusteredSessionStoreCreate a session store.static LocalSessionStoreCreate a session storestatic LocalSessionStoreCreate a session storestatic LocalSessionStoreCreate a session storestatic SessionStoreCreate a Session store given a backend and configuration JSON.static SessionStoreCreate a Session store given a backend and configuration JSON.Initialize this store. -
Uses of Vertx in io.vertx.mutiny.ext.web.sstore.cookie
Methods in io.vertx.mutiny.ext.web.sstore.cookie with parameters of type VertxModifier and TypeMethodDescriptionstatic CookieSessionStoreCreates a CookieSessionStore.static CookieSessionStoreDeprecated. -
Uses of Vertx in io.vertx.mutiny.ext.web.sstore.infinispan
Methods in io.vertx.mutiny.ext.web.sstore.infinispan with parameters of type VertxModifier and TypeMethodDescriptionstatic InfinispanSessionStoreCreate a newInfinispanSessionStorefor the given configuration.static InfinispanSessionStoreInfinispanSessionStore.create(Vertx vertx, io.vertx.core.json.JsonObject options, org.infinispan.client.hotrod.RemoteCacheManager remoteCacheManager) LikeInfinispanSessionStore.create(Vertx, JsonObject)but with a pre-configured Infinispan Client. -
Uses of Vertx in io.vertx.mutiny.ext.web.sstore.redis
Methods in io.vertx.mutiny.ext.web.sstore.redis with parameters of type VertxModifier and TypeMethodDescriptionstatic RedisSessionStoreCreates a RedisSessionStore with the given retry TO.static RedisSessionStoreCreates a RedisSessionStore with the default retry TO. -
Uses of Vertx in io.vertx.mutiny.ext.web.templ.freemarker
Methods in io.vertx.mutiny.ext.web.templ.freemarker with parameters of type VertxModifier and TypeMethodDescriptionstatic FreeMarkerTemplateEngineCreate a template engine using defaultsstatic FreeMarkerTemplateEngineCreate a template engine using defaults -
Uses of Vertx in io.vertx.mutiny.ext.web.templ.handlebars
Methods in io.vertx.mutiny.ext.web.templ.handlebars with parameters of type VertxModifier and TypeMethodDescriptionstatic HandlebarsTemplateEngineCreate a template engine using defaultsstatic HandlebarsTemplateEngineCreate a template engine using defaults -
Uses of Vertx in io.vertx.mutiny.ext.web.templ.httl
Methods in io.vertx.mutiny.ext.web.templ.httl with parameters of type VertxModifier and TypeMethodDescriptionstatic HTTLTemplateEngineCreate a template engine using defaultsstatic HTTLTemplateEngineCreate a template engine using defaults and custom file extension -
Uses of Vertx in io.vertx.mutiny.ext.web.templ.mvel
Methods in io.vertx.mutiny.ext.web.templ.mvel with parameters of type VertxModifier and TypeMethodDescriptionstatic MVELTemplateEngineCreate a template engine using defaultsstatic MVELTemplateEngineCreate a template engine using defaults -
Uses of Vertx in io.vertx.mutiny.ext.web.templ.pebble
Methods in io.vertx.mutiny.ext.web.templ.pebble with parameters of type VertxModifier and TypeMethodDescriptionstatic PebbleTemplateEngineCreate a template engine using defaultsstatic PebbleTemplateEngineCreate a template engine using a custom Builder, e.g. if you want use custom Filters or Functions.static PebbleTemplateEngineCreate a template engine using defaultsstatic PebbleTemplateEnginePebbleTemplateEngine.create(Vertx vertx, String extension, io.pebbletemplates.pebble.PebbleEngine engine) Create a template engine using a custom Builder, e.g. if you want use custom Filters or Functions. -
Uses of Vertx in io.vertx.mutiny.ext.web.templ.pug
Methods in io.vertx.mutiny.ext.web.templ.pug with parameters of type VertxModifier and TypeMethodDescriptionstatic PugTemplateEngineCreate a template engine using defaultsstatic PugTemplateEngineCreate a template engine using defaultsstatic PugTemplateEngineCreate a template engine using defaults -
Uses of Vertx in io.vertx.mutiny.ext.web.templ.thymeleaf
Methods in io.vertx.mutiny.ext.web.templ.thymeleaf with parameters of type VertxModifier and TypeMethodDescriptionstatic ThymeleafTemplateEngineCreate a template engine using defaults -
Uses of Vertx in io.vertx.mutiny.junit5
Methods in io.vertx.mutiny.junit5 that return VertxModifier and TypeMethodDescriptionVertxParameterProvider.newInstance(org.junit.jupiter.api.extension.ExtensionContext extensionContext, org.junit.jupiter.api.extension.ParameterContext parameterContext) Methods in io.vertx.mutiny.junit5 that return types with arguments of type VertxModifier and TypeMethodDescriptionio.vertx.junit5.ParameterClosingConsumer<Vertx>VertxParameterProvider.parameterClosingConsumer()VertxParameterProvider.type() -
Uses of Vertx in io.vertx.mutiny.kafka.admin
Methods in io.vertx.mutiny.kafka.admin with parameters of type Vertx -
Uses of Vertx in io.vertx.mutiny.kafka.client.consumer
Methods in io.vertx.mutiny.kafka.client.consumer with parameters of type VertxModifier and TypeMethodDescriptionstatic <K,V> KafkaConsumer<K, V> Create a new KafkaConsumer instancestatic <K,V> KafkaConsumer<K, V> KafkaConsumer.create(Vertx vertx, io.vertx.kafka.client.common.KafkaClientOptions options, Class<K> keyType, Class<V> valueType) Create a new KafkaConsumer instancestatic <K,V> KafkaConsumer<K, V> Create a new KafkaConsumer instancestatic <K,V> KafkaConsumer<K, V> Create a new KafkaConsumer instancestatic <K,V> KafkaConsumer<K, V> Create a new KafkaConsumer instance from a nativeConsumer.static <K,V> KafkaConsumer<K, V> KafkaConsumer.create(Vertx vertx, org.apache.kafka.clients.consumer.Consumer<K, V> consumer, io.vertx.kafka.client.common.KafkaClientOptions options) Create a new KafkaConsumer instance from a nativeConsumer. -
Uses of Vertx in io.vertx.mutiny.kafka.client.producer
Methods in io.vertx.mutiny.kafka.client.producer with parameters of type VertxModifier and TypeMethodDescriptionstatic <K,V> KafkaProducer<K, V> Create a new KafkaProducer instancestatic <K,V> KafkaProducer<K, V> Create a new KafkaProducer instancestatic <K,V> KafkaProducer<K, V> Create a new KafkaProducer instance from a nativeProducer.static <K,V> KafkaProducer<K, V> KafkaProducer.create(Vertx vertx, org.apache.kafka.clients.producer.Producer<K, V> producer, io.vertx.kafka.client.common.KafkaClientOptions options) Create a new KafkaProducer instance from a nativeProducer.static <K,V> KafkaProducer<K, V> KafkaProducer.createShared(Vertx vertx, String name, io.vertx.kafka.client.common.KafkaClientOptions options) Get or create a KafkaProducer instance which shares its stream with any other KafkaProducer created with the samenamestatic <K,V> KafkaProducer<K, V> KafkaProducer.createShared(Vertx vertx, String name, io.vertx.kafka.client.common.KafkaClientOptions options, Class<K> keyType, Class<V> valueType) Get or create a KafkaProducer instance which shares its stream with any other KafkaProducer created with the samenamestatic <K,V> KafkaProducer<K, V> Get or create a KafkaProducer instance which shares its stream with any other KafkaProducer created with the samenamestatic <K,V> KafkaProducer<K, V> KafkaProducer.createShared(Vertx vertx, String name, Map<String, String> config, Class<K> keyType, Class<V> valueType) Get or create a KafkaProducer instance which shares its stream with any other KafkaProducer created with the samename -
Uses of Vertx in io.vertx.mutiny.mqtt
Methods in io.vertx.mutiny.mqtt with parameters of type VertxModifier and TypeMethodDescriptionstatic MqttClientReturn an MQTT client instance using the default optionsstatic MqttClientReturn an MQTT client instancestatic MqttServerReturn an MQTT server instance using default optionsstatic MqttServerReturn an MQTT server instance -
Uses of Vertx in io.vertx.mutiny.mssqlclient
Methods in io.vertx.mutiny.mssqlclient with parameters of type VertxModifier and TypeMethodDescriptionstatic io.smallrye.mutiny.Uni<MSSQLConnection>Create a connection to SQL Server with the givenconnectOptions.static io.smallrye.mutiny.Uni<MSSQLConnection>LikeMSSQLConnection.connect(Vertx, MSSQLConnectOptions)with options built fromconnectionUri.static MSSQLConnectionMSSQLConnection.connectAndAwait(Vertx vertx, io.vertx.mssqlclient.MSSQLConnectOptions connectOptions) Create a connection to SQL Server with the givenconnectOptions.static MSSQLConnectionMSSQLConnection.connectAndAwait(Vertx vertx, String connectionUri) LikeMSSQLConnection.connect(Vertx, MSSQLConnectOptions)with options built fromconnectionUri.static voidMSSQLConnection.connectAndForget(Vertx vertx, io.vertx.mssqlclient.MSSQLConnectOptions connectOptions) Create a connection to SQL Server with the givenconnectOptions.static voidMSSQLConnection.connectAndForget(Vertx vertx, String connectionUri) LikeMSSQLConnection.connect(Vertx, MSSQLConnectOptions)with options built fromconnectionUri. -
Uses of Vertx in io.vertx.mutiny.mysqlclient
Methods in io.vertx.mutiny.mysqlclient with parameters of type VertxModifier and TypeMethodDescriptionstatic io.smallrye.mutiny.Uni<MySQLConnection>Create a connection to MySQL server with the givenconnectOptions.static io.smallrye.mutiny.Uni<MySQLConnection>LikeMySQLConnection.connect(Vertx, MySQLConnectOptions)with options built fromconnectionUri.static MySQLConnectionMySQLConnection.connectAndAwait(Vertx vertx, io.vertx.mysqlclient.MySQLConnectOptions connectOptions) Create a connection to MySQL server with the givenconnectOptions.static MySQLConnectionMySQLConnection.connectAndAwait(Vertx vertx, String connectionUri) LikeMySQLConnection.connect(Vertx, MySQLConnectOptions)with options built fromconnectionUri.static voidMySQLConnection.connectAndForget(Vertx vertx, io.vertx.mysqlclient.MySQLConnectOptions connectOptions) Create a connection to MySQL server with the givenconnectOptions.static voidMySQLConnection.connectAndForget(Vertx vertx, String connectionUri) LikeMySQLConnection.connect(Vertx, MySQLConnectOptions)with options built fromconnectionUri. -
Uses of Vertx in io.vertx.mutiny.oracleclient
Methods in io.vertx.mutiny.oracleclient with parameters of type VertxModifier and TypeMethodDescriptionstatic io.smallrye.mutiny.Uni<OracleConnection>Create a connection to Oracle with the givenconnectOptions.static io.smallrye.mutiny.Uni<OracleConnection>LikeOracleConnection.connect(Vertx, OracleConnectOptions)with options built fromconnectionUri.static OracleConnectionOracleConnection.connectAndAwait(Vertx vertx, io.vertx.oracleclient.OracleConnectOptions connectOptions) Create a connection to Oracle with the givenconnectOptions.static OracleConnectionOracleConnection.connectAndAwait(Vertx vertx, String connectionUri) LikeOracleConnection.connect(Vertx, OracleConnectOptions)with options built fromconnectionUri.static voidOracleConnection.connectAndForget(Vertx vertx, io.vertx.oracleclient.OracleConnectOptions connectOptions) Create a connection to Oracle with the givenconnectOptions.static voidOracleConnection.connectAndForget(Vertx vertx, String connectionUri) LikeOracleConnection.connect(Vertx, OracleConnectOptions)with options built fromconnectionUri. -
Uses of Vertx in io.vertx.mutiny.pgclient
Methods in io.vertx.mutiny.pgclient with parameters of type VertxModifier and TypeMethodDescriptionstatic io.smallrye.mutiny.Uni<PgConnection>LikePgConnection.connect(Vertx, PgConnectOptions)with options build from the environment variables.static io.smallrye.mutiny.Uni<PgConnection>Connects to the database and returns the connection if that succeeds.static io.smallrye.mutiny.Uni<PgConnection>LikePgConnection.connect(Vertx, PgConnectOptions)with options build fromconnectionUri.static PgConnectionPgConnection.connectAndAwait(Vertx vertx) LikePgConnection.connect(Vertx, PgConnectOptions)with options build from the environment variables.static PgConnectionPgConnection.connectAndAwait(Vertx vertx, io.vertx.pgclient.PgConnectOptions options) Connects to the database and returns the connection if that succeeds.static PgConnectionPgConnection.connectAndAwait(Vertx vertx, String connectionUri) LikePgConnection.connect(Vertx, PgConnectOptions)with options build fromconnectionUri.static voidPgConnection.connectAndForget(Vertx vertx) LikePgConnection.connect(Vertx, PgConnectOptions)with options build from the environment variables.static voidPgConnection.connectAndForget(Vertx vertx, io.vertx.pgclient.PgConnectOptions options) Connects to the database and returns the connection if that succeeds.static voidPgConnection.connectAndForget(Vertx vertx, String connectionUri) LikePgConnection.connect(Vertx, PgConnectOptions)with options build fromconnectionUri. -
Uses of Vertx in io.vertx.mutiny.pgclient.pubsub
Methods in io.vertx.mutiny.pgclient.pubsub with parameters of type VertxModifier and TypeMethodDescriptionstatic PgSubscriberPgSubscriber.subscriber(Vertx vertx, io.vertx.pgclient.PgConnectOptions options) Create a subscriber. -
Uses of Vertx in io.vertx.mutiny.rabbitmq
Methods in io.vertx.mutiny.rabbitmq with parameters of type VertxModifier and TypeMethodDescriptionstatic RabbitMQClientCreate and return a client configured with the default options.static RabbitMQClientCreate and return a client.static RabbitMQPublisherRabbitMQPublisher.create(Vertx vertx, RabbitMQClient client, io.vertx.rabbitmq.RabbitMQPublisherOptions options) Create and return a publisher using the specified client. -
Uses of Vertx in io.vertx.mutiny.redis.client
Methods in io.vertx.mutiny.redis.client with parameters of type VertxModifier and TypeMethodDescriptionstatic RedisRedis.createClient(Vertx vertx) Create a new Redis client using the default client options.static RedisRedis.createClient(Vertx vertx, io.vertx.redis.client.RedisOptions options) Create a new Redis client using the given client options.static RedisRedis.createClient(Vertx vertx, String connectionString) Create a new Redis client using the default client options.static RedisRedis.createClusterClient(Vertx vertx, io.vertx.redis.client.RedisOptions options, Supplier<io.smallrye.mutiny.Uni<io.vertx.redis.client.RedisClusterConnectOptions>> connectOptions) Creates a new cluster Redis client.static RedisRedis.createReplicationClient(Vertx vertx, io.vertx.redis.client.RedisOptions options, Supplier<io.smallrye.mutiny.Uni<io.vertx.redis.client.RedisReplicationConnectOptions>> connectOptions) Creates a new replication Redis client.static RedisRedis.createSentinelClient(Vertx vertx, io.vertx.redis.client.RedisOptions options, Supplier<io.smallrye.mutiny.Uni<io.vertx.redis.client.RedisSentinelConnectOptions>> connectOptions) Creates a new sentinel Redis client.static RedisRedis.createStandaloneClient(Vertx vertx, io.vertx.redis.client.RedisOptions options, Supplier<io.smallrye.mutiny.Uni<io.vertx.redis.client.RedisStandaloneConnectOptions>> connectOptions) Creates a new standalone Redis client. -
Uses of Vertx in io.vertx.mutiny.sqlclient
Methods in io.vertx.mutiny.sqlclient with parameters of type Vertx
CookieSessionStore.create(Vertx, String)Creates a CookieSessionStore.