Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hjerpbakk/asyncmethodcaller

AsyncMethodCaller is used to call methods asynchronously and continue with other methods after execution completes if you cannot use async and await. It makes asynchronous calls easy to understand and test. Very useful in ViewModels.
https://github.com/hjerpbakk/asyncmethodcaller

async csharp unit-testing viewmodel

Last synced: 2 months ago
JSON representation

AsyncMethodCaller is used to call methods asynchronously and continue with other methods after execution completes if you cannot use async and await. It makes asynchronous calls easy to understand and test. Very useful in ViewModels.

Awesome Lists containing this project

README

        

AsyncMethodCaller
=================

[![Latest version](https://img.shields.io/nuget/v/AsyncMethodCaller.svg)](https://www.nuget.org/packages/AsyncMethodCaller/) [![Downloads from NuGet](https://img.shields.io/nuget/dt/AsyncMethodCaller.svg)](https://www.nuget.org/packages/AsyncMethodCaller/)

**AsyncMethodCaller** is used to call methods asynchronously. Execution will continue with other methods after the asynchronous call completes. Use this if you cannot use async and await to easily make testable asynchronous calls. Very useful in ViewModels.

See [this blog post for more information](https://hjerpbakk.com/blog/2013/10/1/async-method-caller-easy-async-without-await).

Also available as a [nuget-package](https://nuget.org/packages/AsyncMethodCaller).