"Add Leader" Failure Resolution?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
We create room tags programatically, without leaders. In some cases they eventually move outside the room they were assigned to, so we get a warning:
In the UI, it looks like this:
In the API, it has an equivalent callback that we get via transaction.GetFailureHandlingOptions().SetFailuresPreprocessor() .
The problem is that the only resolution that is available is "Move to Room" (FailureResolutionType.MoveElements), equivalent to what we see in the UI. However, we would like to add a leader instead, but FailureResolutionType.FixElements is not available in this case.
My questions are:
1) Is there a FailureResolutionType that would work in this case?
2) Are we allowed to perform custom transaction operations (such as setting HasLeader=true) in the failure preprocessor?
3) Is there a best-practice way to do this?