Skip to content

Releases: wintoncode/Winton.Extensions.Threading.Actor

Version 1.1.0

02 Jun 16:23

Choose a tag to compare

New features

  • Add ability to pause actor whilst awaiting:
_actor.Enqueue(
    async () =>
    {
         ... some processing ...

         var results = await DoSomethingOnAnotherThread().WhileActorPaused();

        ... process results ...       
    });

Here the first thing processed after the await resumes will be the processing of the returned results. In the meantime all other work enqueued will be queued up.

Version 1.0.1

13 Mar 13:34

Choose a tag to compare

Same as version 1.0.0 but this time with the correct versioning for the assembly and NuGet package!

Release Version 1.0

13 Mar 13:12

Choose a tag to compare

Initial version ported to open source.