You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 11, 2023. It is now read-only.
Because response is expected to be returned instead of being passed to a completion block passed into handler blocks, handler blocks are in-effect required to be synchronous.
My handler block needs to build responses based on query result from YapDatabase which only supports async so I had to use dispatch_semaphore to block the calling thread until query finishes.
It would be nice of optional async handler blocks are supported as an optional feature.