RemoteControlManager

Superclass:
NSObject
Declared In:

Introduction

The RemoteControlManager singleton object defines an interface to manage remote chat messages.



Methods

+defaultRemoteControlManager
-getUnreadRemoteMessageCount
-sendRemoteChatMessage:

defaultRemoteControlManager


+ (id)defaultRemoteControlManager; 
Return Value

The singleton instance of RemoteControlManager.

Discussion

Gets the singleton instance of the remote control manager.

Availability
v11

getUnreadRemoteMessageCount


- (NSInteger)getUnreadRemoteMessageCount; 
Return Value

The number of unread remote chat messages.

Discussion

Gets the count of unread remote chat messages.

Availability
v11

sendRemoteChatMessage:


- (void)sendRemoteChatMessage:(NSString *)message; 
Parameters
message

The chat message text to send to the Web Console.

Discussion

Sends a remote chat message to the administrator's Web Console

Availability
v11

Properties

isRemoteActive
messagesPerSession

isRemoteActive


@property (nonatomic,
    readonly) BOOL isRemoteActive; 
Return Value

NO : if Not Active.

Discussion

Check if remote control is active.

Availability
v14

messagesPerSession


@property (strong,
    nonatomic) NSMutableArray *messagesPerSession; 
Discussion

An array holding all the RemoteChatMessage instances for the current remote session.

Availability
v11