Search code examples
silverlight-4.0wcf-ria-services

Launching background process in RIA service


I have a silverlight/RIA service application and in that, after I save the data using EF/RIA services. I would like to start one task that might take more than 30 seconds or so to finish. What is the best way I can start a task without hold the service thread? The user might issue multiple save command and each one need to trigger separate tasks. Thanks,


Solution

  • You could start up a Background Worker or if you can/are using Silverlight 5 you could use the TPL.