TVOOutgoingCallDelegate Protocol Reference

Conforms to NSObject
Declared in TVOOutgoingCallDelegate.h

Overview

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

Required Methods

– outgoingCallDidConnect: required method

Notifies the delegate that an outgoing call has connected.

- (void)outgoingCallDidConnect:(nonnull TVOOutgoingCall *)outgoingCall

Parameters

outgoingCall

The TVOOutgoingCall that was connected.

Discussion

Notifies the delegate that an outgoing call has connected.

See Also

Declared In

TVOOutgoingCallDelegate.h

– outgoingCallDidDisconnect: required method

Notifies the delegate that an outgoing call has disconnected.

- (void)outgoingCallDidDisconnect:(nonnull TVOOutgoingCall *)outgoingCall

Parameters

outgoingCall

The TVOOutgoingCall that was disconnected.

Discussion

Notifies the delegate that an outgoing call has disconnected.

See Also

Declared In

TVOOutgoingCallDelegate.h

– outgoingCall:didFailWithError: required method

Notifies the delegate that an outgoing call has encountered an error.

- (void)outgoingCall:(nonnull TVOOutgoingCall *)outgoingCall didFailWithError:(nonnull NSError *)error

Parameters

outgoingCall

The TVOOutgoingCall that encountered the error.

error

The NSError that occurred.

Discussion

Notifies the delegate that an outgoing call has encountered an error.

See Also

Declared In

TVOOutgoingCallDelegate.h

Optional Methods

– outgoingCallIsConnecting:

Notifies the delegate that an outgoing call is connecting.

- (void)outgoingCallIsConnecting:(nonnull TVOOutgoingCall *)outgoingCall

Parameters

outgoingCall

The TVOOutgoingCall that is connecting.

Discussion

Notifies the delegate that an outgoing call is connecting.

See Also

Declared In

TVOOutgoingCallDelegate.h