Using the Poco C++ Library, how can I pass data to a thread?

Viewed 7225

So my question actually has several parts:

Using the Poco Threading Library:

  1. What are all of the possible methods for passing data to threads (at both thread invocation and for an already running thread).
  2. Which methods are preferred by you and why? Can you provide any additional information about your experience using these methods?
  3. Which methods are recommended by Applied Informatics (the author of Poco)? Is there any additional documentation supplied by Applied Informatics that outlines passing arguments to threads?

I've looked here already:

Thanks in advance...

1 Answers
Related