SMOutgoingCallDelegate Protocol Reference

Conforms to SMCallDelegate
Declared in SMOutgoingCallDelegate.h

Overview

Call object, which is used for outgoing calls.

– establishCall: required method

Starts call establishment on created outgoing call

- (void)establishCall:(BOOL)isVideoEnabled

Parameters

isVideoEnabled

indicates video is enabled or not in the call

Availability

2.0.0

Discussion

Starts call establishment on created outgoing call

Declared In

SMOutgoingCallDelegate.h

– establishAudioCall required method

Establishes an outgoing call with single audio m-line. The related call backs are done through the application listener interface instance defined in the call service.

- (void)establishAudioCall

Availability

3.0.5

Discussion

Establishes an outgoing call with single audio m-line. The related call backs are done through the application listener interface instance defined in the call service.

Declared In

SMOutgoingCallDelegate.h

– establishCall:withCustomParameters: required method

Establishes an outgoing call with custom parameters dictionary

- (void)establishCall:(BOOL)isVideoEnabled withCustomParameters:(NSDictionary *)customParameters

Parameters

customParameters

indicates custom call properties like emergency etc.

videoEnabled

indicates local video sending is enabled or not

Availability

4.3.1

Discussion

Establishes an outgoing call with custom parameters dictionary

Declared In

SMOutgoingCallDelegate.h

– establishAudioCallWithCustomParameters: required method

Establishes an audio only outgoing call with custom parameters dictionary

- (void)establishAudioCallWithCustomParameters:(NSDictionary *)customParameters

Parameters

customParameters

indicates custom call properties like emergency etc.

Availability

4.3.1

Discussion

Establishes an audio only outgoing call with custom parameters dictionary

Declared In

SMOutgoingCallDelegate.h