Nair
Nair

Reputation: 7458

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,

Upvotes: 0

Views: 117

Answers (1)

Rus
Rus

Reputation: 1827

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

Upvotes: 1

Related Questions