Package com.caplin.streamlink
Interface SubscriptionErrorEvent
-
public interface SubscriptionErrorEvent
Provides information about a subscription error.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SubscriptionErrorType
getError()
Returns the type of subscription error.ErrorReason
getErrorReason()
Returns theErrorReason
of the event.java.lang.String
getSubject()
Returns the subject of subscription to which the event relates.
-
-
-
Method Detail
-
getSubject
java.lang.String getSubject()
Returns the subject of subscription to which the event relates.
- Returns:
- The subject.
-
getError
SubscriptionErrorType getError()
Returns the type of subscription error.
- Returns:
- The subscription error.
-
getErrorReason
ErrorReason getErrorReason()
Returns the
ErrorReason
of the event.- Returns:
- The error reason.
-
-