Skip to content

Releases: swiftwasm/WebWorkerKit

0.0.3

21 Nov 17:03
Compare
Choose a tag to compare

This release allows devs to re-use distributed actor instances that were created previously via MyActorType.new() but were not yet cleaned up. Note: cleaning up DA instances is currently not possible, an API will be provided for that in a future release.

Full Changelog: 0.0.2...0.0.3

0.0.2

14 Nov 13:12
Compare
Choose a tag to compare

This is a patch release that fixes nested Codable containers, which allows encoding and decoding enums with nested associated values as JSValue.

0.0.1

26 Oct 14:21
Compare
Choose a tag to compare

Initial release

Restrictions:

  • Only one DistributedActor can be initialized via MyWebWorker.new() per worker instance.
  • In general, only one instance of a DistributedActor type can be instantiated per host (i.e. they act as singletons)
  • Documentation missing
  • Error handling minimal
  • No tests