I have a contract in the same signature as an Action<T>
delegate:
[ServiceContract()]
interface ISomeService
{
[OperationContract()]
void DoSomethi开发者_如何转开发ng(object data);
}
- Will the client wait for the server side method execution to finish?
- If yes, how to prevent this?
- Should I use async calls to achieve my goal?
Look into one way operations.
精彩评论