Winton.Extensions.Threading.Actor icon indicating copy to clipboard operation
Winton.Extensions.Threading.Actor copied to clipboard

An implementation of an actor designed to integrate with C#'s async/await.

Results 1 Winton.Extensions.Threading.Actor issues
Sort by recently updated
recently updated
newest added

## Possible interface ```csharp public interface IActor { /* ... */ Task Enumerate(IAsyncEnumerator enumerator, Action currentValueHandler, Action completionHandler = null); Task Enumerate(IAsyncEnumerator enumerator, Func currentValueAsyncHandler, Action completionHandler = null); }...