Uses of Class
org.springframework.integration.dsl.FilterEndpointSpec
Packages that use FilterEndpointSpec
Package
Description
Root package of the Spring Integration Java DSL.
-
Uses of FilterEndpointSpec in org.springframework.integration.dsl
Methods in org.springframework.integration.dsl that return FilterEndpointSpecModifier and TypeMethodDescriptionFilterEndpointSpec.discardChannel(String discardChannelName) Specify a channel name where rejected Messages should be sent.FilterEndpointSpec.discardChannel(MessageChannel discardChannel) Specify a channel where rejected Messages should be sent.FilterEndpointSpec.discardFlow(IntegrationFlow discardFlow) Configure a subflow to run for discarded messages instead of adiscardChannel(MessageChannel).FilterEndpointSpec.discardWithinAdvice(boolean discardWithinAdvice) Set to 'true' if you wish the discard processing to occur within any request handler advice applied to this filter.FilterEndpointSpec.throwExceptionOnRejection(boolean throwExceptionOnRejection) The default value isfalsemeaning that rejected Messages will be quietly dropped or sent to the discard channel if available.Method parameters in org.springframework.integration.dsl with type arguments of type FilterEndpointSpecModifier and TypeMethodDescription<P> BBaseIntegrationFlowDefinition.filter(Class<P> expectedType, GenericSelector<P> genericSelector, Consumer<FilterEndpointSpec> endpointConfigurer) BaseIntegrationFlowDefinition.filter(Object service, String methodName, Consumer<FilterEndpointSpec> endpointConfigurer) Populate aMessageFilterwithMethodInvokingSelectorfor the method of the provided service.BaseIntegrationFlowDefinition.filter(String expression, Consumer<FilterEndpointSpec> endpointConfigurer) Populate aMessageFilterwithMessageSelectorfor the provided SpEL expression.BaseIntegrationFlowDefinition.filter(MessageProcessorSpec<?> messageProcessorSpec, Consumer<FilterEndpointSpec> endpointConfigurer) Populate aMessageFilterwithMethodInvokingSelectorfor theMessageProcessorfrom the providedMessageProcessorSpec.<P> BIntegrationFlowDefinition.filter(GenericSelector<P> genericSelector, Consumer<FilterEndpointSpec> endpointConfigurer)