Package com.eventstore.dbclient
Class PersistentSubscriptionInfo
- java.lang.Object
-
- com.eventstore.dbclient.PersistentSubscriptionInfo
-
- Direct Known Subclasses:
PersistentSubscriptionToAllInfo,PersistentSubscriptionToStreamInfo
public abstract class PersistentSubscriptionInfo extends java.lang.ObjectCommon persistent subscription info type.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<PersistentSubscriptionConnectionInfo>getConnections()Active connections to the subscription.java.lang.StringgetEventSource()The source of events for the subscription.java.lang.StringgetGroupName()The group name given on creation.java.lang.StringgetStatus()The current status of the subscription.
-
-
-
Method Detail
-
getEventSource
public java.lang.String getEventSource()
The source of events for the subscription.
-
getGroupName
public java.lang.String getGroupName()
The group name given on creation.
-
getStatus
public java.lang.String getStatus()
The current status of the subscription.
-
getConnections
public java.util.List<PersistentSubscriptionConnectionInfo> getConnections()
Active connections to the subscription.- See Also:
PersistentSubscriptionConnectionInfo
-
-