Class MessageSelectorChain
java.lang.Object
org.springframework.integration.selector.MessageSelectorChain
- All Implemented Interfaces:
GenericSelector<Message<?>>
,MessageSelector
A message selector implementation that passes incoming messages through a
chain of selectors. Whether the Message is
accepted
is based upon the tallied results of the individual selectors' responses in
accordance with this chain's MessageSelectorChain.VotingStrategy
.- Author:
- Mark Fisher, Gary Russell, Artem Bilan
-
Nested Class Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Pass the message through the selector chain.void
add
(int index, MessageSelector selector) Add a selector to the chain at the specified index.void
add
(MessageSelector selector) Add a selector to the end of the chain.void
setSelectors
(List<MessageSelector> selectors) Initialize the selector chain.void
setVotingStrategy
(MessageSelectorChain.VotingStrategy votingStrategy) Specify the voting strategy for this selector chain.
-
Constructor Details
-
MessageSelectorChain
public MessageSelectorChain()
-
-
Method Details
-
setVotingStrategy
Specify the voting strategy for this selector chain.The default is
MessageSelectorChain.VotingStrategy.ALL
.- Parameters:
votingStrategy
- The voting strategy.
-
add
Add a selector to the end of the chain.- Parameters:
selector
- The message selector.
-
add
Add a selector to the chain at the specified index.- Parameters:
index
- The index.selector
- The message selector.
-
setSelectors
Initialize the selector chain. Removes any existing selectors.- Parameters:
selectors
- The message selectors.
-
accept
Pass the message through the selector chain. Whether the Message is accepted is based upon the tallied results of the individual selectors' responses in accordance with this chain'sMessageSelectorChain.VotingStrategy
.- Specified by:
accept
in interfaceGenericSelector<Message<?>>
- Specified by:
accept
in interfaceMessageSelector
-