TVONotificationDelegate Protocol Reference

Conforms to NSObject
Declared in TVONotificationDelegate.h

Overview

The TVONotificationDelegate’s methods allow the delegate to be informed when incoming call invites are received or canceled.

– callInviteReceived: required method

Notifies the delegate that an incoming call invite has been received.

- (void)callInviteReceived:(nonnull TVOCallInvite *)callInvite

Parameters

callInvite

A TVOCallInvite object.

Discussion

Notifies the delegate that an incoming call invite has been received.

See Also

Declared In

TVONotificationDelegate.h

– callInviteCanceled: required method

Notifies the delegate that an incoming call invite has been canceled.

- (void)callInviteCanceled:(nullable TVOCallInvite *)callInvite

Parameters

callInvite

A TVOCallInvite object. Note: This may be nil if a TVOCallInvite object was not previously created.

Discussion

Notifies the delegate that an incoming call invite has been canceled.

See Also

Declared In

TVONotificationDelegate.h

– notificationError: required method

Notifies the delegate that an error occurred when processing the VoIP push notification payload.

- (void)notificationError:(nonnull NSError *)error

Parameters

error

An NSError object describing the error.

Discussion

Notifies the delegate that an error occurred when processing the VoIP push notification payload.

Declared In

TVONotificationDelegate.h