public static interface VertxComponentBuilderFactory.VertxComponentBuilder extends ComponentBuilder<org.apache.camel.component.vertx.VertxComponent>
| Modifier and Type | Method and Description |
|---|---|
default VertxComponentBuilderFactory.VertxComponentBuilder |
autowiredEnabled(boolean autowiredEnabled)
Whether autowiring is enabled.
|
default VertxComponentBuilderFactory.VertxComponentBuilder |
bridgeErrorHandler(boolean bridgeErrorHandler)
Allows for bridging the consumer to the Camel routing Error Handler,
which mean any exceptions occurred while the consumer is trying to
pickup incoming messages, or the likes, will now be processed as a
message and handled by the routing Error Handler.
|
default VertxComponentBuilderFactory.VertxComponentBuilder |
host(String host)
Hostname for creating an embedded clustered EventBus.
|
default VertxComponentBuilderFactory.VertxComponentBuilder |
lazyStartProducer(boolean lazyStartProducer)
Whether the producer should be started lazy (on the first message).
|
default VertxComponentBuilderFactory.VertxComponentBuilder |
port(int port)
Port for creating an embedded clustered EventBus.
|
default VertxComponentBuilderFactory.VertxComponentBuilder |
timeout(int timeout)
Timeout in seconds to wait for clustered Vertx EventBus to be ready.
|
default VertxComponentBuilderFactory.VertxComponentBuilder |
vertx(io.vertx.core.Vertx vertx)
To use the given vertx EventBus instead of creating a new embedded
EventBus.
|
default VertxComponentBuilderFactory.VertxComponentBuilder |
vertxFactory(io.vertx.core.spi.VertxFactory vertxFactory)
To use a custom VertxFactory implementation.
|
default VertxComponentBuilderFactory.VertxComponentBuilder |
vertxOptions(io.vertx.core.VertxOptions vertxOptions)
Options to use for creating vertx.
|
build, build, doSetProperty, registerdefault VertxComponentBuilderFactory.VertxComponentBuilder host(String host)
host - the value to setdefault VertxComponentBuilderFactory.VertxComponentBuilder port(int port)
port - the value to setdefault VertxComponentBuilderFactory.VertxComponentBuilder timeout(int timeout)
timeout - the value to setdefault VertxComponentBuilderFactory.VertxComponentBuilder vertx(io.vertx.core.Vertx vertx)
vertx - the value to setdefault VertxComponentBuilderFactory.VertxComponentBuilder vertxOptions(io.vertx.core.VertxOptions vertxOptions)
vertxOptions - the value to setdefault VertxComponentBuilderFactory.VertxComponentBuilder bridgeErrorHandler(boolean bridgeErrorHandler)
bridgeErrorHandler - the value to setdefault VertxComponentBuilderFactory.VertxComponentBuilder lazyStartProducer(boolean lazyStartProducer)
lazyStartProducer - the value to setdefault VertxComponentBuilderFactory.VertxComponentBuilder autowiredEnabled(boolean autowiredEnabled)
autowiredEnabled - the value to setdefault VertxComponentBuilderFactory.VertxComponentBuilder vertxFactory(io.vertx.core.spi.VertxFactory vertxFactory)
vertxFactory - the value to setApache Camel