Package org.symphonyoss.s2.fugue.pubsub
Interface ISubscription<P>
-
- Type Parameters:
P- The type of the payload handled by this subscription.
- All Superinterfaces:
ISubscriptionAdmin
- All Known Implementing Classes:
QueueSubscription,TopicSubscription
public interface ISubscription<P> extends ISubscriptionAdmin
A subscription.- Author:
- Bruce Skingle
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.symphonyoss.s2.fugue.pipeline.IThreadSafeRetryableConsumer<P>getConsumer()-
Methods inherited from interface org.symphonyoss.s2.fugue.pubsub.ISubscriptionAdmin
getSubscriptionNames
-
-
-
-
Method Detail
-
getConsumer
org.symphonyoss.s2.fugue.pipeline.IThreadSafeRetryableConsumer<P> getConsumer()
- Returns:
- The consumer for received messages.
-
-