我需要在正确的工作线程上调用在计时器线程上运行的方法。Invoke/BeginInvoke 过程对我有用。有2个线程共享一个线程间数据容器进行数据交换。一种是填充队列,一种是处理队列。如果队列在空状态后被填充,则会引发事件。所有问题都是由计时器引起的,它在其经过的事件上打开新线程。我正在使用 Dispatcher 在正确的线程上进行调度,但一切正常,除了这个 Dispatcher。:-)
请问有没有人看出问题出在哪里?
完整的测试代码在这里: http: //pastebin.com/jqYbR9PS。
调试输出是这样的:
App Thread ID: 9
Processor Thread ID: 10
Processor Dispatcher Thread ID: 10
The thread '<No Name>' (0x888) has exited with code 0 (0x0).
Processor QueueListener caller Thread ID: 12
Processor Dispatcher Thread ID: 10
Processor invoking ProcessQueue.
...here shut be processing output...
Processor invoked ProcessQueue.
App Thread ID on end: 9
The thread 'vshost.RunParkingWindow' (0x17c4) has exited with code 0 (0x0).
The thread '<No Name>' (0x820) has exited with code 0 (0x0).
The program '[5760] TestingConsoleApplication.vshost.exe: Managed (v4.0.30319)' has exited with code 0 (0x0).
ProcessQueue 永远不会被调用/调用。
谢谢你。