Sunday, October 18, 2015

Simplify Parallel Programming with Patterns

My CodeRage X session on parallel programming with patterns is now available on YouTube.

You can also download the slides (pps, pdf) and code.

3 comments:

  1. is there any way to pass data from the Task to the main thread in the onterminated event ?

    ReplyDelete
    Replies
    1. Not specifically in OnTerminated, no. You can send your data to the main thread before that (Task.Comm.Send) or you can use a shared data object or you can use ExitCode if you only want to pass back an integer status.

      Delete
  2. is there any example with shared data?

    ReplyDelete