Interface MockEndpointBuilderFactory.AdvancedMockEndpointBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- Enclosing interface:
- MockEndpointBuilderFactory
public static interface MockEndpointBuilderFactory.AdvancedMockEndpointBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Advanced builder for endpoint for the Mock component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default MockEndpointBuilderFactory.MockEndpointBuilder
basic()
default MockEndpointBuilderFactory.AdvancedMockEndpointBuilder
copyOnExchange(boolean copyOnExchange)
Sets whether to make a deep copy of the incoming Exchange when received at this mock endpoint.default MockEndpointBuilderFactory.AdvancedMockEndpointBuilder
copyOnExchange(String copyOnExchange)
Sets whether to make a deep copy of the incoming Exchange when received at this mock endpoint.default MockEndpointBuilderFactory.AdvancedMockEndpointBuilder
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default MockEndpointBuilderFactory.AdvancedMockEndpointBuilder
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 MockEndpointBuilderFactory.MockEndpointBuilder basic()
-
copyOnExchange
default MockEndpointBuilderFactory.AdvancedMockEndpointBuilder copyOnExchange(boolean copyOnExchange)
Sets whether to make a deep copy of the incoming Exchange when received at this mock endpoint. Is by default true. The option is a:boolean
type. Default: true Group: producer (advanced)
-
copyOnExchange
default MockEndpointBuilderFactory.AdvancedMockEndpointBuilder copyOnExchange(String copyOnExchange)
Sets whether to make a deep copy of the incoming Exchange when received at this mock endpoint. Is by default true. The option will be converted to aboolean
type. Default: true Group: producer (advanced)
-
synchronous
default MockEndpointBuilderFactory.AdvancedMockEndpointBuilder 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 MockEndpointBuilderFactory.AdvancedMockEndpointBuilder 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
-
-