Event Processing?

  • Thread starter Thread starter Martin Brindle
  • Start date Start date
M

Martin Brindle

If i were to create a new thread which fires an event back to the main()
thread, which thread executes the event?

Martin
 
Martin Brindle said:
If i were to create a new thread which fires an event back to the main()
thread, which thread executes the event?

The thread which calls the delegate is the thread that executes the
delegate.

-- Barry
 
Back
Top