dillenmeister/Trello.NET

Suuport for Async Service on certain calls

Closed this issue · 3 comments

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)
{
...
}
}

There is an async API. Look at trello.Async.

Did you look at Trello.Async? Did it work? Re-open the issue otherwise.

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.