VerintDelegate Protocol Reference

Conforms to NSObject
Declared in EXPCore.h

Overview

Delegates registered with the Verint SDK may adopt the VerintDelegate protocol to receive updates about the SDK’s lifecycle.

– didStartSDK

Tells the delegate that the SDK has been started.

- (void)didStartSDK

Declared In

EXPCore.h

– didStartSDKWithError:message:

Tells the delegate that the SDK has been started, but a recoverable error occurred.

- (void)didStartSDKWithError:(EXPErrorCode)error message:(NSString *)message

Parameters

error

The error type

message

A message describing the error

Declared In

EXPCore.h

– didFailToStartSDKWithError:message:

Tells the delegate when the SDK has failed to start.

- (void)didFailToStartSDKWithError:(EXPErrorCode)error message:(NSString *)message

Parameters

error

The error type

message

A message describing the error

Declared In

EXPCore.h