Package com.opencloud.sip.biggroup
Interface NotifyResultEvent
-
public interface NotifyResultEvent
An event describing the outcome of a "Big Notify" operation.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
NotifyResultEvent.FailedNotify
Summarises the notify failure of a single subscription dialog.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NotifyActivity
getActivity()
Get theNotifyActivity
that this event arrived onIterable<NotifyResultEvent.FailedNotify>
getErrors()
Get a summary of the errors that occured during the "Big Notify".boolean
hasErrors()
Determine whether any subscribers rejected or failed to respond to the NOTIFY request.
-
-
-
Method Detail
-
getActivity
NotifyActivity getActivity()
Get theNotifyActivity
that this event arrived on- Returns:
- the
NotifyActivity
-
hasErrors
boolean hasErrors()
Determine whether any subscribers rejected or failed to respond to the NOTIFY request.- Returns:
false
if 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 emptyIterable
is returned.
-
-