(no title)
pork
|
13 years ago
No. Both the "safe" and "unsafe" versions are asynchronous. The safe version waits for a response from the server before invoking a callback. The unsafe version does not, but that doesn't make it synchronous -- the operation is still potentially executing on the server when the function returns.
rogerbinns|13 years ago
My contention is that "safe" is a bad name for the parameter, and "async" is far better suited as it describes the semantics of the API.