Cisco Cisco Computer Telephony Integration Option 8.5 Developer's Guide

Page of 668
 
11-23
CTI OS Developer’s Guide for Cisco ICM/IPCC Enterprise & Hosted Editions Release 7.1(1)
 
Chapter 11      SkillGroup Object
Methods
Remarks
The CTI OS server sends skillgroup statistics in an 
OnSkillGroupStatisticsUpdated event. If this request is successful, the 
OnNewSkillGroupStatistics event is no longer received.
The following is a C++ code example where the args parameter contains values 
for PeripheralID and SkillGroupNumber.
Arguments & argsStatBroadcast = Arguments::CreateInstance();
argsStatBroadcast.AddItem(CTIOS_SKILLGROUPNUMBER, intSG);
argsStatBroadcast.AddItem(CTIOS_PERIPHERALID, m_periphID);
m_pSkGrStatSession->DisableSkillGroupStatistics ( argsStatBroadcast );
argsStatBroadcast.Release();
DumpProperties
See 
 for a description of the DumpProperties method.
EnableSkillGroupStatistics
The EnableSkillGroupStatistics method requests that real-time statistics be sent 
to the skillgroup object. In an agent mode application, this request is usually made 
through the agent object (see 
).
Syntax
C++:
int EnableSkillGroupStatistics(Arguments & args) 
COM:
HRESULT EnableSkillgroupStatistics (IArguments * args, int * 
errorCode)
VB:
EnableSkillgroupStatistics (args As CTIOSCLIENTLib.IArguments, 
errorCode As Long)
Java:
int EnableSkillGroupStatistics(Arguments args)
.NET
CilError EnableSkillGroupStatistics(Arguments args)