我有类库,其中基于生产者和消费者的多线程类。
private void WorkDeQueue()
{
while (true)
{
string Url = null;
lock (locker)
{
if (queueList.Count > 0)
{
Url = queueList.Dequeue();
/* return if a null is found in the queue */
if (Url == null) return;
}
}
if (Url != null)
{
/* if a job was found then process it */
GetData(Url); //This Is a Method
}
else
{
/* if a job was not found (meaning list is empty) then
* wait till something is added to it*/
wh.WaitOne();
}
}
}
此 GetData 方法在该类上没有主体。如何调用我的项目的任何方法来代替 GetData。
我尝试了工厂模式和反射,但都对我不起作用。所以请告诉我如何从这里调用我的项目的任何方法。