INSSDKModule Protocol Reference

Conforms to NSObject
Declared in INSSDKModule.h

Overview

INSSDKModule protocol defines Insiteo SDK module interface.

Availability

+ isAvailable required method

Checks if you are able to use the specific module according to your client configuration.

+ (BOOL)isAvailable

Return Value

YES if the module is available, otherwise NO.

Declared In

INSSDKModule.h

Start / Stop

+ isStarted required method

Checks if the module is started.

+ (BOOL)isStarted

Return Value

YES if the module is started, otherwise NO.

Declared In

INSSDKModule.h

+ start: required method

Starts the module manually.

+ (BOOL)start:(NSError **)error

Parameters

error

Pointer to a NSError that will be set if an error occured.

Return Value

YES if the module started successfully, otherwise NO.

Declared In

INSSDKModule.h

+ stop required method

Stops the module manually.

+ (void)stop

Declared In

INSSDKModule.h

Clean

+ clean required method

Clean module data.

+ (void)clean

Declared In

INSSDKModule.h