我正在为我的问题寻找有效的解决方案。我正在使用VS 2010.我想从wcf服务方法执行一系列操作,并将每个操作状态发送回调用客户端。我已经设置了wcf与回调合同并使用双工通道,我能够连接到wcf。当我开始长时间运行操作时,有时它会触发回调,有时它不会。我不知道为什么。以下是我遵循的方法。
在wcf服务方法中,
public void Start()
{
List<Employee> empLists = GetEmpData(); // geting lots of employee objects
foreach(Employee emp in empLists) // maybe 1000 records
{
StartlongRunning(emp);
}
}
private void StartlongRunning(Employee emp)
{
// here i am creating a new background worker...
// Here i am registering for RunWorkerCompleted, DoWork, ReportProgress events...
bgw.RunWorkerAsync(emp)
}
void bgw_DoWork(object sender, DoWorkEventArgs e)
{
Employee emp = (Employee)e.Argument;
using (ClassA p = new ClassA(emp.ID)) // this class is from another dll.
{
e.Result = p.StartProcess(emp.Code);
}
}
void bgw_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
// This is not calling properly.
// Sometimes this method is working...most of the time it is not working..
// here i am unregistering the registerd DoWork, RunWorkerCompleted events...
// calling bgw.Dispose(); // i tried without this also;...but no use...
// from here I am firing the callback to client...
}
这是StartProcess方法的实现。
public string StartProcess(string empcode)
{
// call to another method1() // here saving to DB frequently. works fine
// call to another method2() // here also saving to DB frequently. works fine
// call to someother method3() // here also some DB insert frequently. fine
// call to Method4() // here also some DB insert.
// this method is not calling frequently..
// sometimes it is calling but most of times not..why ???
return value;
}
private void SaveToDB(args1, args2...)
{
DatabaseHelper.Save(args1, args2.....); // this static class is from another dll
// only DB operation in this static class..
}
此静态类的实现如下所示。
using (SqlConnection conn = new SqlConnection(DBConnection))
{
conn.open;
using (SqlCommand cmd = conn.CreateCommand())
{
...adding parameters
cmd.ExecuteNonQuery();
}
conn.close();
}
如果StartProcess
返回,则后台工作程序将执行RunWorker
方法。
但它没有发生。这里有什么问题?
我正在为每个后台工作者创建每个ClassA
对象。
一旦ClassA
的一个对象完成,它就会被处理掉。
但我不知道为什么StartProcess
没有正确回复电话。
在我的实现中,后台工作者之间是否存在ClassA
个对象的重叠?
答案 0 :(得分:1)
我认为问题是您在循环中调用RunWorkerAsync而不检查它是否不忙。 您应该以列表作为参数调用RunWorkerAsync,而不是尝试在不同的线程中启动所有工作。
我会做这样的事情:
public void Start()
{
List<Employee> empLists = GetEmpData(); // geting lots of employee objects
StartlongRunning(empLists);
}
并相应地更改bgw_DoWork。
如果您需要查看进度,可以为每个员工对象调用ReportProgress。
答案 1 :(得分:0)
如果你想创建同时与多个backgroundWorkers一起工作的应用程序,你应该为你正在做的每个操作初始化新的backgroundWorker对象。这将解决问题。