注册事件
以下代码示例演示了简单事件处理程序的实现、main TAPI 事件接口的注册、事件筛选器的设置以及呼叫通知的注册。
显示的事件处理程序是一个示例,而不是一个要求。 主要目标是确保接收事件的线程在将工作传递给另一个线程之前执行最少的处理。 这可以防止事件处理程序在高事件负载的情况下成为性能问题。
在使用此代码示例之前,必须执行 初始化 TAPI 和 选择地址中的操作。
注意
此示例没有适用于生产代码的错误检查和发布。
//
// Example 1: Implement a simple event handler.
//
HRESULT STDMETHODCALLTYPE
CTAPIEventNotification::Event(
TAPI_EVENT TapiEvent,
IDispatch * pEvent
)
{
// AddRef the event so it does not go away.
pEvent->AddRef();
// Post a message to our own UI thread.
BOOL bMessage;
bMessage = PostMessage(
ghDlg,
WM_PRIVATETAPIEVENT,
(WPARAM) TapiEvent,
(LPARAM) pEvent
);
// If (bMessage == 0) process the error here.
return S_OK;
}
//
// Example 2: Register the event interface.
//
long gulAdvise; // Globally declared
IConnectionPointContainer * pCPC;
IConnectionPoint * pCP;
IUnknown * pUnk;
// Get the connection point container interface pointer from the TAPI object.
hr = gpTapi->QueryInterface(
IID_IConnectionPointContainer,
(void **)&pCPC
);
// If ( hr != S_OK O) process the error here.
// Get the ITTAPIEventNotification interface pointer from the container.
hr = pCPC->FindConnectionPoint(
IID_ITTAPIEventNotification,
&pCP
);
// If ( hr != S_OK O) process the error here.
pCPC->Release();
// Create a private event notification object.
CTAPIEventNotification* pTapiEventNotification = new CTAPIEventNotification;
hr = pTapiEventNotification->QueryInterface(
IID_IUnknown,
(void **)&pUnk
);
// If ( hr != S_OK O) process the error here.
// Call the advise method to give TAPI the IUnknown pointer for the event handler.
hr = pCP->Advise(
pUnk,
(ULONG *)&gulAdvise
);
// If ( hr != S_OK O) process the error here.
pCP->Release();
//
// Example 3: Set the event filter.
//
// Assume we are interested only in call-related events.
hr = gpTapi->put_EventFilter(
TE_CALLNOTIFICATION | TE_CALLSTATE | TE_CALLMEDIA
);
// If ( hr != S_OK O) process the error here.
//
// Example 4: Register an address with TAPI
// for call notifications. Assume we are interested
// in video and audio calls, and that pAddress
// is a pointer to the ITAddress interface of
// an address that can handle both media types.
long glRegister; // Globally declared
hr = gpTapi->RegisterCallNotifications(
pAddress,
VARIANT_TRUE, // monitor privileges
VARIANT_TRUE, // owner privileges
TAPIMEDIATYPE_AUDIO|TAPIMEDIATYPE_VIDEO,
gulAdvise, // As returned by Advise
&glRegister
);
// If ( hr != S_OK O) process the error here.
相关主题