Suuport for Async Service on certain calls
edmar1960 opened this issue · 3 comments
edmar1960 commented
I am noticing a long delay on some actions in Trello. Would be very helpful to support an async service call similar to Twitter:
IAsyncResult result = service.ListTweetsOnHomeTimeline(
(tweets, response) =>
{
if (response.StatusCode == HttpStatusCode.OK)
{
...
}
}
dillenmeister commented
There is an async API. Look at trello.Async
.
dillenmeister commented
Did you look at Trello.Async? Did it work? Re-open the issue otherwise.
edmar1960 commented
not yet, it's already in an async thread, but I do need to act on multiple items in this thread as well. Twitter made it very easy and not optional, so I had to act on that. Many regards, ed.