| Old -> New | Branch | Deconstruct | Construct | fetch |
|---|---|---|---|---|
|
/ControllerOne/ -> /ControllerOne/ControllerTwo |
ControllerOne | - | ControllerTwo | 2 levels |
|
/ControllerOne/ControllerTwo --> /ControllerOne/ |
ControllerOne | ControllerTwo | - | 1 level |
|
/ControllerOne/ControllerTwo --> /ControllerOne/ControllerThree |
ControllerOne | ControllerTwo | ControllerThree | 2 levels |
|
/ControllerOne/actionOne --> /ControllerOne/actionTwo |
ControllerOne | - | - | 1 level |
Branch will usually run always, thus action change runs in Frontend always and is secured with level fetch up until branch in Backend.
First runs action
then runs branch.
In backend Branch is always run, in Frontend only run on branchKCArray