Archived

This forum has been archived. Please start a new discussion on GitHub.

How to know it is async call or sync call?

On the server side, how does it know the client is using xxx_async call or just sync call (xxx)?

Thanks
Alex

Comments

  • You cannot know. It's physically impossible to find out because, for both sync and async calls, the exact same bytes are written on the wire.

    Why would you want to know?

    Cheers,

    Michi.