事件破坏函数的结果
Events corrupts the result of the function
各位程序员大家好
我正在用 C# 编写一个程序来管理 TAPI 库。我不会给出代码(除非有人要求),因为它有一个名为 Softone 的软件的命令并且与业务相关。我面临的问题如下:
我想要例如当一个调用来执行一个功能时。
非常简单。所以我设置了事件处理程序并调用了函数,但是当它是 运行 时,它给我提到的程序 (Softone) 的结果是错误的。相同的功能无论是手动执行还是以任何其他方式执行都会给出正确的结果。我尝试禁用事件处理程序,执行函数,然后重新激活事件处理程序。但这也是失败的。
我想要的是另一种防止事件伪造函数数据的方法。你有什么建议吗?
我是初学者,请理解。谢谢:)
static public void RegisterTapi()
{
tapi.Initialize();
tapi.EventFilter = (int)(
TAPI3Lib.TAPI_EVENT.TE_CALLNOTIFICATION |
TAPI3Lib.TAPI_EVENT.TE_CALLINFOCHANGE |
TAPI3Lib.TAPI_EVENT.TE_DIGITEVENT |
TAPI3Lib.TAPI_EVENT.TE_PHONEEVENT |
TAPI3Lib.TAPI_EVENT.TE_CALLSTATE |
TAPI3Lib.TAPI_EVENT.TE_GENERATEEVENT |
TAPI3Lib.TAPI_EVENT.TE_GATHERDIGITS |
TAPI3Lib.TAPI_EVENT.TE_REQUEST);
tapi.ITTAPIEventNotification_Event_Event += new TAPI3Lib.ITTAPIEventNotification_EventEventHandler(TapiCall.tapi_ITTAPIEventNotification_Event_Event);
}
public static void tapi_ITTAPIEventNotification_Event_Event(TAPI3Lib.TAPI_EVENT TapiEvent, object pEvent)
{
switch (TapiEvent)
{
case TAPI3Lib.TAPI_EVENT.TE_CALLNOTIFICATION:
ITCallNotificationEvent tcallNotificationEvent = (TAPI3Lib.ITCallNotificationEvent)pEvent;
TAPI3Lib.ITCallInfo a = tcallNotificationEvent.Call;
switch (a.CallState)
{
case TAPI3Lib.CALL_STATE.CS_OFFERING://A new call has appeared
tapi.ITTAPIEventNotification_Event_Event -= TapiCall.tapi_ITTAPIEventNotification_Event_Event;
ActionOffering();
tapi.ITTAPIEventNotification_Event_Event += TapiCall.tapi_ITTAPIEventNotification_Event_Event;
break;
}
break;
}
break;
}
public static void ActionOffering()
{
string sqa_action = *SQL QUERY*
XTable ds_action = XSupport.GetSQLDataSet(sqa_action, null);
if (ds_action.Count > 0)
{
string caller_action = ds_action.Current["ACTION"].ToString();
XSupport.ExecS1Command(caller_action, null);
}
}
正如 FelixCastor 所建议的,我检查了我正在调用的函数所在的线程 运行ning 而不是 运行 在同一个线程上。我在代码中所做的更改非常小。
我在我知道将由主线程执行的代码部分声明了调度程序。
public static Dispatcher dispatcher = Dispatcher.CurrentDispatcher;
我这样做是因为,根据 dοcumentation ,调度程序将 "run" 在声明的线程上。所以如果我想 运行 主线程上的函数,我必须在那里声明它。然后我写了这行简单的代码,强制 ActionOffering 函数在调度程序(主)线程上 运行。
dispatcher.BeginInvoke(new InvokeDelegate(ActionOffering));
各位程序员大家好
我正在用 C# 编写一个程序来管理 TAPI 库。我不会给出代码(除非有人要求),因为它有一个名为 Softone 的软件的命令并且与业务相关。我面临的问题如下:
我想要例如当一个调用来执行一个功能时。 非常简单。所以我设置了事件处理程序并调用了函数,但是当它是 运行 时,它给我提到的程序 (Softone) 的结果是错误的。相同的功能无论是手动执行还是以任何其他方式执行都会给出正确的结果。我尝试禁用事件处理程序,执行函数,然后重新激活事件处理程序。但这也是失败的。
我想要的是另一种防止事件伪造函数数据的方法。你有什么建议吗?
我是初学者,请理解。谢谢:)
static public void RegisterTapi()
{
tapi.Initialize();
tapi.EventFilter = (int)(
TAPI3Lib.TAPI_EVENT.TE_CALLNOTIFICATION |
TAPI3Lib.TAPI_EVENT.TE_CALLINFOCHANGE |
TAPI3Lib.TAPI_EVENT.TE_DIGITEVENT |
TAPI3Lib.TAPI_EVENT.TE_PHONEEVENT |
TAPI3Lib.TAPI_EVENT.TE_CALLSTATE |
TAPI3Lib.TAPI_EVENT.TE_GENERATEEVENT |
TAPI3Lib.TAPI_EVENT.TE_GATHERDIGITS |
TAPI3Lib.TAPI_EVENT.TE_REQUEST);
tapi.ITTAPIEventNotification_Event_Event += new TAPI3Lib.ITTAPIEventNotification_EventEventHandler(TapiCall.tapi_ITTAPIEventNotification_Event_Event);
}
public static void tapi_ITTAPIEventNotification_Event_Event(TAPI3Lib.TAPI_EVENT TapiEvent, object pEvent)
{
switch (TapiEvent)
{
case TAPI3Lib.TAPI_EVENT.TE_CALLNOTIFICATION:
ITCallNotificationEvent tcallNotificationEvent = (TAPI3Lib.ITCallNotificationEvent)pEvent;
TAPI3Lib.ITCallInfo a = tcallNotificationEvent.Call;
switch (a.CallState)
{
case TAPI3Lib.CALL_STATE.CS_OFFERING://A new call has appeared
tapi.ITTAPIEventNotification_Event_Event -= TapiCall.tapi_ITTAPIEventNotification_Event_Event;
ActionOffering();
tapi.ITTAPIEventNotification_Event_Event += TapiCall.tapi_ITTAPIEventNotification_Event_Event;
break;
}
break;
}
break;
}
public static void ActionOffering()
{
string sqa_action = *SQL QUERY*
XTable ds_action = XSupport.GetSQLDataSet(sqa_action, null);
if (ds_action.Count > 0)
{
string caller_action = ds_action.Current["ACTION"].ToString();
XSupport.ExecS1Command(caller_action, null);
}
}
正如 FelixCastor 所建议的,我检查了我正在调用的函数所在的线程 运行ning 而不是 运行 在同一个线程上。我在代码中所做的更改非常小。
我在我知道将由主线程执行的代码部分声明了调度程序。
public static Dispatcher dispatcher = Dispatcher.CurrentDispatcher;
我这样做是因为,根据 dοcumentation ,调度程序将 "run" 在声明的线程上。所以如果我想 运行 主线程上的函数,我必须在那里声明它。然后我写了这行简单的代码,强制 ActionOffering 函数在调度程序(主)线程上 运行。
dispatcher.BeginInvoke(new InvokeDelegate(ActionOffering));