Package com.opencloud.sip.biggroup
Interface NotifyResultEvent
-
public interface NotifyResultEventAn event describing the outcome of a "Big Notify" operation.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceNotifyResultEvent.FailedNotifySummarises the notify failure of a single subscription dialog.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NotifyActivitygetActivity()Get theNotifyActivitythat this event arrived onIterable<NotifyResultEvent.FailedNotify>getErrors()Get a summary of the errors that occured during the "Big Notify".booleanhasErrors()Determine whether any subscribers rejected or failed to respond to the NOTIFY request.
-
-
-
Method Detail
-
getActivity
NotifyActivity getActivity()
Get theNotifyActivitythat this event arrived on- Returns:
- the
NotifyActivity
-
hasErrors
boolean hasErrors()
Determine whether any subscribers rejected or failed to respond to the NOTIFY request.- Returns:
falseif all subscribers responded successfully, otherwisetrue
-
getErrors
Iterable<NotifyResultEvent.FailedNotify> getErrors()
Get a summary of the errors that occured during the "Big Notify".- Returns:
- a sequence of
NotifyResultEvent.FailedNotify, summarizing the subscribers that failed. If there were no failures, an emptyIterableis returned.
-
-