-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added some helper functions to do asynchronous SOQL and SOSL queries. #3
Conversation
As it has no state, you could make it a category on ZKSforceClient, that way you don't need to pass one in, and you can call the new methods directly on an instance of the client object. |
I like. Added them directly to zkSforceClient, or would you prefer a category? |
I think a category would be cleaner. |
Sorry for all the back and forth, can you fix the header comment/license to be BSD, and collapse this down into a single change ? Thanks! |
doh, sorry, see you already fixed the headers. |
added some helper functions to do asynchronous SOQL and SOSL queries.
Whoops, just finished the squash/rebase and I see now you already did the pull. Thanks! Happy to have contributed to something that helped me out a great deal :) |
Does the work on a background thread via
dispatch_async
. I am not particularly crazy about having to pass in the current sharedzkSforceClient
object, but it seemed the simplest option short of constructing scaffolding (a singleton?) for managing a shared client app-wide. Open to better suggestions!