RPC call behaviour on own client

I was wondering if an RPC Call like this

networkView.RPC("Method", RPCMode.All);

gets called on my own client instantly before returning to the calling method?
And does RPC generally wait for acknowledgement of all clients before returning to the calling method or is this behaviour asynchronous?

1 Answer

1

Its not a blocking call, it does not wait for acknowledgement AFAIK.

Is anyone sure about that? Is it just not blocking for remote calls but the own method (since it´s RPCMode.All) is being called instantly?

What hinders you to test it out?