Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Logical Consistency #113

Merged
merged 1 commit into from
Oct 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion StrategyData.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export enum failureConditions {
axiumBadGeneration = 'axiumBadGeneration'
}
```
Note with the above, due to there being by default 3 different types of failure within an ActionStrategy within STRX. That being "Expiration," "Blocked," and "Bad Generation." Expiration, which we treat as an absolute failure with no recovery, **unless** that action has already been dispatched and is being controlled by an ActionController in an asynchronous context.
Note with the above, due to there being by default 3 different types of failure within an ActionStrategy within STRX. That being "Expiration," "Blocked," and "Bad Generation." Expiration, which we treat as an absolute failure with no recovery, **unless** that action has already been dispatched to its method and is being controlled by an ActionController in an asynchronous context.

If a expired action must be recovered for your planning, please use a subscription or plan to pay attention to the badActions list on the "Axium." From there you can determine either you action's type or strategy topic to reissue such if it expired. Blocked signifies that the "Ownership" concept is currently loaded at the target transformation is temporarily being blocked. These actions will still exist on the ownership pendingAction list, but may still expire as a badAction appending "ownershipExpired" to your strategies data.

Expand Down