Add EffectActor transducer host and align runtime tests - #17
Merged
Conversation
couchdeveloper
force-pushed
the
addSwiftActor
branch
from
June 3, 2026 10:06
cf1360e to
4f75133
Compare
Summary: - add EffectActor as a Swift Concurrency-native TransducerHost - add EffectActor.Input and actor-backed state binding support - introduce TransducerHost as the shared host contract for actor, observable, and view runtimes - align runtime-boundary cancellation and system-error latching semantics across hosts - clarify source documentation for host, input, send, request, and compute behavior - restructure tests into dedicated host/input suites for EffectActor, EffectObservable, and EffectView - stabilize async send ordering coverage for slower CI runners - remove racy subscription test synchronization from the SwiftUI harness - test EffectView identity reset through a fresh remount instead of root-view replacement - fix test harness timeout conversion for hosted SwiftUI views Testing: - swift test --filter EffectActorTests - swift test --filter EffectActorInputTests - swift test --filter EffectObservableTests - swift test --filter EffectObservableInputTests - swift test --filter EffectViewInputTests - swift test --filter EffectViewTests test: harden async cancellation and task subscription tests - update async-action cancellation expectations to match current runtime semantics - remove racy yield/update-based synchronization from task subscription tests - wait until request continuations are actually enqueued before releasing shared work - stabilize cancelled-subscribe coverage against harness timing issues test: harden async and SwiftUI runtime tests
couchdeveloper
force-pushed
the
addSwiftActor
branch
from
June 3, 2026 10:40
4f75133 to
6a20a4c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary:
Testing: