Package com.adobe.granite.offloading.api
Interface TopicInstancesHolder
-
@Deprecated public interface TopicInstancesHolder
Deprecated.As of AEM 6.5, see https://jira.corp.adobe.com/browse/CQ-4256396TheTopicInstancesHolder
stores information about the enablement of instances for a certain processing topic. Clients outside offloading must not use this interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.util.Set<InstanceDescription>
getDisabledInstances()
Deprecated.Provides a list of the instances disabled for processing the topic of this topic holder.java.util.Set<InstanceDescription>
getEnabledInstances()
Deprecated.Provides a list of the instances enabled for processing the topic of this topic holder.java.lang.String
getTopic()
Deprecated.Gets the topic of this topic holder.
-
-
-
Method Detail
-
getEnabledInstances
java.util.Set<InstanceDescription> getEnabledInstances()
Deprecated.Provides a list of the instances enabled for processing the topic of this topic holder.- Returns:
- a list of instance descriptions
-
getDisabledInstances
java.util.Set<InstanceDescription> getDisabledInstances()
Deprecated.Provides a list of the instances disabled for processing the topic of this topic holder.- Returns:
- a list of instance descriptions
-
getTopic
java.lang.String getTopic()
Deprecated.Gets the topic of this topic holder.- Returns:
- the topic string
-
-