Interface DestinationTopicContainer
-
- All Known Subinterfaces:
DestinationTopicResolver
- All Known Implementing Classes:
DefaultDestinationTopicResolver
public interface DestinationTopicContainer
Provides methods to store and retrieveDestinationTopic
instances.- Since:
- 2.7
- Author:
- Tomaz Fernandes
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addDestinationTopics(java.util.List<DestinationTopic> destinationTopics)
Adds the provided destination topics to the container.DestinationTopic
getDestinationTopicByName(java.lang.String topicName)
Returns the DestinationTopic instance registered for that topic.
-
-
-
Method Detail
-
addDestinationTopics
void addDestinationTopics(java.util.List<DestinationTopic> destinationTopics)
Adds the provided destination topics to the container.- Parameters:
destinationTopics
- theDestinationTopic
list to add.
-
getDestinationTopicByName
DestinationTopic getDestinationTopicByName(java.lang.String topicName)
Returns the DestinationTopic instance registered for that topic.- Parameters:
topicName
- the topic name of the DestinationTopic to be returned.- Returns:
- the DestinationTopic instance registered for that topic.
-
-