uber-archive / ohana-ios

Contacts simplified. This project is deprecated and not maintained.
MIT License
362 stars 40 forks source link

make the post processor API asynchronous #41

Closed adam-zethraeus closed 7 years ago

adam-zethraeus commented 8 years ago

the post processors are currently synchronous. they could have to do a substantial amount of work; we should make them async.

NickEntin commented 7 years ago

Where exactly are you proposing the change? To some extent, we need the post processors to run synchronously in terms of each other, since each one relies on the result of the previous one. In terms of actually starting the process, you could just make the call on a new thread.