Interface GrpcEndpointBuilderFactory.AdvancedGrpcEndpointConsumerBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointConsumerBuilder,org.apache.camel.EndpointConsumerResolver
- All Known Subinterfaces:
GrpcEndpointBuilderFactory.AdvancedGrpcEndpointBuilder
- Enclosing interface:
- GrpcEndpointBuilderFactory
public static interface GrpcEndpointBuilderFactory.AdvancedGrpcEndpointConsumerBuilder extends org.apache.camel.builder.EndpointConsumerBuilderAdvanced builder for endpoint consumers for the gRPC component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default GrpcEndpointBuilderFactory.GrpcEndpointConsumerBuilderbasic()default GrpcEndpointBuilderFactory.AdvancedGrpcEndpointConsumerBuilderexceptionHandler(String exceptionHandler)To let the consumer use a custom ExceptionHandler.default GrpcEndpointBuilderFactory.AdvancedGrpcEndpointConsumerBuilderexceptionHandler(org.apache.camel.spi.ExceptionHandler exceptionHandler)To let the consumer use a custom ExceptionHandler.default GrpcEndpointBuilderFactory.AdvancedGrpcEndpointConsumerBuilderexchangePattern(String exchangePattern)Sets the exchange pattern when the consumer creates an exchange.default GrpcEndpointBuilderFactory.AdvancedGrpcEndpointConsumerBuilderexchangePattern(org.apache.camel.ExchangePattern exchangePattern)Sets the exchange pattern when the consumer creates an exchange.default GrpcEndpointBuilderFactory.AdvancedGrpcEndpointConsumerBuildersynchronous(boolean synchronous)Sets whether synchronous processing should be strictly used.default GrpcEndpointBuilderFactory.AdvancedGrpcEndpointConsumerBuildersynchronous(String synchronous)Sets whether synchronous processing should be strictly used.
-
-
-
Method Detail
-
basic
default GrpcEndpointBuilderFactory.GrpcEndpointConsumerBuilder basic()
-
exceptionHandler
default GrpcEndpointBuilderFactory.AdvancedGrpcEndpointConsumerBuilder exceptionHandler(org.apache.camel.spi.ExceptionHandler exceptionHandler)
To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored. The option is a: <code>org.apache.camel.spi.ExceptionHandler</code> type. Group: consumer (advanced)- Parameters:
exceptionHandler- the value to set- Returns:
- the dsl builder
-
exceptionHandler
default GrpcEndpointBuilderFactory.AdvancedGrpcEndpointConsumerBuilder exceptionHandler(String exceptionHandler)
To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored. The option will be converted to a <code>org.apache.camel.spi.ExceptionHandler</code> type. Group: consumer (advanced)- Parameters:
exceptionHandler- the value to set- Returns:
- the dsl builder
-
exchangePattern
default GrpcEndpointBuilderFactory.AdvancedGrpcEndpointConsumerBuilder exchangePattern(org.apache.camel.ExchangePattern exchangePattern)
Sets the exchange pattern when the consumer creates an exchange. The option is a: <code>org.apache.camel.ExchangePattern</code> type. Group: consumer (advanced)- Parameters:
exchangePattern- the value to set- Returns:
- the dsl builder
-
exchangePattern
default GrpcEndpointBuilderFactory.AdvancedGrpcEndpointConsumerBuilder exchangePattern(String exchangePattern)
Sets the exchange pattern when the consumer creates an exchange. The option will be converted to a <code>org.apache.camel.ExchangePattern</code> type. Group: consumer (advanced)- Parameters:
exchangePattern- the value to set- Returns:
- the dsl builder
-
synchronous
default GrpcEndpointBuilderFactory.AdvancedGrpcEndpointConsumerBuilder synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used. The option is a: <code>boolean</code> type. Default: false Group: advanced- Parameters:
synchronous- the value to set- Returns:
- the dsl builder
-
synchronous
default GrpcEndpointBuilderFactory.AdvancedGrpcEndpointConsumerBuilder synchronous(String synchronous)
Sets whether synchronous processing should be strictly used. The option will be converted to a <code>boolean</code> type. Default: false Group: advanced- Parameters:
synchronous- the value to set- Returns:
- the dsl builder
-
-