TVOCallDelegate Protocol Reference

Conforms to NSObject
Declared in TVOCallDelegate.h

Overview

Objects that adopt the TVOCallDelegate protocol will be informed of the lifecycle events of calls.

Required Methods

– callDidConnect: required method

Notifies the delegate that a call has connected.

- (void)callDidConnect:(nonnull TVOCall *)call

Parameters

call

The TVOCall that was connected.

Discussion

Notifies the delegate that a call has connected.

See Also

Declared In

TVOCallDelegate.h

– callDidDisconnect: required method

Notifies the delegate that a call has disconnected.

- (void)callDidDisconnect:(nonnull TVOCall *)call

Parameters

call

The TVOCall that was disconnected.

Discussion

Notifies the delegate that a call has disconnected.

See Also

Declared In

TVOCallDelegate.h

– call:didFailWithError: required method

Notifies the delegate that a call has encountered an error.

- (void)call:(nullable TVOCall *)call didFailWithError:(nonnull NSError *)error

Parameters

call

The TVOCall that encountered the error.

error

The NSError that occurred.

Discussion

Notifies the delegate that a call has encountered an error.

See Also

Declared In

TVOCallDelegate.h