Minor Changes
-
#3393
430986cdf
Thanks @davidkpiano! - Deprecatedsend()
action creator. Instead of that, you can usesendTo()
to send events to other actors andraise()
to send events to the "self" actor. -
#3802
8743ad0bd
Thanks @Andarist! - Fixed a class of inference problems for our builtin actions (assign
,sendTo
, etc). -
#3694
fd589055b
Thanks @Andarist! - All actions received a new generic:TExpressionEvent
. To type things more correctly and allow TS to infer things better we need to distinguish between all events accepted by a machine (TEvent
) and the event type that actions are "called" with (TExpressionEvent
).It's best to rely on type inference so you shouldn't have to specify this generic manually all over the place.