@@ -584,7 +584,7 @@ goroutine, with a timeout of [`Machine.HandlerTimeout`](https://pkg.go.dev/githu
584
584
` ` ` go
585
585
// can Foo activate?
586
586
func (h *Handlers) FooEnter(e *am.Event) bool {}
587
- // when Foo active, can Bar activate?
587
+ // with Foo active, can Bar activate?
588
588
func (h *Handlers) FooBar(e *am.Event) {}
589
589
// Foo activates
590
590
func (h *Handlers) FooState(e *am.Event) {}
@@ -597,8 +597,6 @@ func (h *Handlers) FooEnd(e *am.Event) {}
597
597
List of handlers during a transition from ` Foo` to ` Bar` , in the order of execution:
598
598
599
599
- ` FooExit` - [negotiation handler](#negotiation-handlers)
600
- - ` FooAny` - [negotiation handler](#negotiation-handlers)
601
- - ` AnyBar` - [negotiation handler](#negotiation-handlers)
602
600
- ` BarEnter` - [negotiation handler](#negotiation-handlers)
603
601
- ` FooBar` - [negotiation handler](#negotiation-handlers)
604
602
- ` FooEnd` - [final handler](#final-handlers)
@@ -611,14 +609,13 @@ which can be set via [`am.Opts`](https://pkg.go.dev/github.com/pancsta/asyncmach
611
609
612
610
### Self Handlers
613
611
614
- Self handler is a final handler for states which were active **before and after** a transition (all no-change active
615
- states). The name is a doubled name of the state (eg ` FooFoo` ).
612
+ Self handler is a negotiation handler for states which were active **before and after** a transition (all no-change
613
+ active states). The name is a doubled name of the state (eg ` FooFoo` ).
616
614
617
615
List of handlers during a transition from ` Foo` to ` Foo Bar` , in the order of execution:
618
616
619
- - ` AnyBar` - [negotiation handler](#negotiation-handlers)
620
617
- ` BarEnter` - [negotiation handler](#negotiation-handlers)
621
- - ` FooFoo` - [final handler](#final -handlers) and **self handler**
618
+ - ` FooFoo` - [negotiation handler](#negotiation -handlers) and **self handler**
622
619
- ` BarState` - [final handler](#final-handlers)
623
620
624
621
Self handlers provide a simple alternative to [` Multi` states](#multi-states), while fully maintaining [state clocks](#clock-and-context).
@@ -754,13 +751,18 @@ end
754
751
### Negotiation Handlers
755
752
756
753
` ` ` go
754
+ // can Foo activate?
757
755
func (h *Handlers) FooEnter(e *am.Event) bool {}
756
+ // can Foo de-activate?
758
757
func (h *Handlers) FooExit(e *am.Event) bool {}
758
+ // with Bar active, can Foo activate?
759
+ func (h *Handlers) BarFoo(e *am.Event) bool {}
759
760
` ` `
760
761
761
- **Negotiation handlers** ` Enter` and ` Exit` are called for every state which is going to be activated or de-activated. They
762
- are allowed to cancel a transition by optionally returning ` false` . **Negotiation handlers** are limited to read-only
763
- operations, or at least to side effects free ones. Their purpose is to make sure that
762
+ **Negotiation handlers** ` Enter` and ` Exit` are called for every state which is going to be activated or de-activated.
763
+ State-state handler (eg ` FooBar` ) are ` Foo` is active and ` Bar` wants to activate. They are allowed to cancel a
764
+ transition by optionally returning ` false` . **Negotiation handlers** are limited to read-only operations, or at least to
765
+ side effects free ones. Their purpose is to make sure that
764
766
[final transition handlers](#final-handlers) are good to go .
765
767
766
768
` ` ` go
@@ -812,10 +814,6 @@ mach.Add1("Foo", nil) // ->am.Canceled
812
814
` ` ` go
813
815
func (h *Handlers) FooState(e *am.Event) {}
814
816
func (h *Handlers) FooEnd(e *am.Event) {}
815
- func (h *Handlers) FooBar(e *am.Event) {}
816
- func (h *Handlers) BarFoo(e *am.Event) {}
817
- func (h *Handlers) AnyFoo(e *am.Event) {}
818
- func (h *Handlers) FooAny(e *am.Event) {}
819
817
` ` `
820
818
821
819
Final handlers ` State` and ` End` are where the main handler logic resides. After the transition gets accepted by
@@ -858,10 +856,10 @@ func (h *Handlers) ProcessingFileState(e *am.Event) {
858
856
859
857
### Global Handlers
860
858
861
- `AnyAny ` is the first negotiation handler and always gets executed.
859
+ `AnyEnter ` is the first negotiation handler and always gets executed.
862
860
863
861
```go
864
- func (d *Debugger) AnyAny (e *am.Event) bool {
862
+ func (d *Debugger) AnyEnter (e *am.Event) bool {
865
863
tx := e.Transition()
866
864
867
865
// ...
0 commit comments