3

Is there a way to know this through memory analysis or some way of application profiling?

securecurve
  • 5,589
  • 5
  • 45
  • 80
  • Here is a detailed answer to a very similar question. http://stackoverflow.com/questions/12680270/determine-whether-a-method-is-synchronous-or-asynchronous – Joey Aug 19 '15 at 15:09

1 Answers1

1

There is no sure way to check programmatically. Either check the documentation or source code to be absolutely sure if the function name does not have the traditional Sync suffix.

mscdex
  • 104,356
  • 15
  • 192
  • 153