Interface GooglePubsubEndpointBuilderFactory.AdvancedGooglePubsubEndpointProducerBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- All Known Subinterfaces:
GooglePubsubEndpointBuilderFactory.AdvancedGooglePubsubEndpointBuilder
- Enclosing interface:
- GooglePubsubEndpointBuilderFactory
public static interface GooglePubsubEndpointBuilderFactory.AdvancedGooglePubsubEndpointProducerBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Advanced builder for endpoint producers for the Google Pubsub component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default GooglePubsubEndpointBuilderFactory.GooglePubsubEndpointProducerBuilder
basic()
default GooglePubsubEndpointBuilderFactory.AdvancedGooglePubsubEndpointProducerBuilder
serializer(Object serializer)
A custom GooglePubsubSerializer to use for serializing message payloads in the producer.default GooglePubsubEndpointBuilderFactory.AdvancedGooglePubsubEndpointProducerBuilder
serializer(String serializer)
A custom GooglePubsubSerializer to use for serializing message payloads in the producer.default GooglePubsubEndpointBuilderFactory.AdvancedGooglePubsubEndpointProducerBuilder
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default GooglePubsubEndpointBuilderFactory.AdvancedGooglePubsubEndpointProducerBuilder
synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).
-
-
-
Method Detail
-
basic
default GooglePubsubEndpointBuilderFactory.GooglePubsubEndpointProducerBuilder basic()
-
serializer
default GooglePubsubEndpointBuilderFactory.AdvancedGooglePubsubEndpointProducerBuilder serializer(Object serializer)
A custom GooglePubsubSerializer to use for serializing message payloads in the producer. The option is a:org.apache.camel.component.google.pubsub.serializer.GooglePubsubSerializer
type. Group: producer (advanced)
-
serializer
default GooglePubsubEndpointBuilderFactory.AdvancedGooglePubsubEndpointProducerBuilder serializer(String serializer)
A custom GooglePubsubSerializer to use for serializing message payloads in the producer. The option will be converted to aorg.apache.camel.component.google.pubsub.serializer.GooglePubsubSerializer
type. Group: producer (advanced)
-
synchronous
default GooglePubsubEndpointBuilderFactory.AdvancedGooglePubsubEndpointProducerBuilder synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). The option is a:boolean
type. Default: false Group: advanced
-
synchronous
default GooglePubsubEndpointBuilderFactory.AdvancedGooglePubsubEndpointProducerBuilder synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). The option will be converted to aboolean
type. Default: false Group: advanced
-
-