Actor Framework Discussions

cancel
Showing results for 
Search instead for 
Did you mean: 

Root Actor Error Handling?

Solved!
Go to solution

@cbutcher and I were looking at the way one particular error is (or more specifically, isn't) dealt with in AF and were wondering what others think.

 

Consider what happens if a Root Actor generates an error in an Actor Core override before it invokes the Call Parent Class Method:

CaseyM_2-1702701403485.png

 

Stop (and Stop Core) will be called, but Handle Error will not. Stop Core also only receives the error code, but not the error source information. Furthermore, Send Last Ack does nothing in the Root Actor's case since it has no caller.

 

What's the best way to handle and display/log such an error?

 

Side note: It seems like Uninit could have included an Error In terminal (but no Error Out) to deal with such a scenario, but that ship has probably already sailed.

CLA CLED AF Guild
Message 1 of 6
(891 Views)

When I care about this, I do all my shutdown and error handling at the end of Actor Core.

0 Kudos
Message 2 of 6
(861 Views)
Solution
Accepted by topic author CaseyM

I used to want the Actor Core to be a template, so that the template would have a 'pre-core', 'post-core' and 'helper'; with the idea of not needing to Call Parent Method. Now, I kind-of see a benefit to keeping the framework as lean as possible.

 

With specific regard to the scenario brought up for the current implementation of AF, the error could be handled through a Report Error to Self. No error is fed to the Call Parent Method. That way, the root's Handle Error can decide what to do next: re-try, take an alternative course of action, alert user and terminate, etc. This would be one of the first messages created, unless the root's Pre-Launch Init or the code prior to Call Parent Method has enqueued messages to caller. (Is the latter even possible?)

 

0 Kudos
Message 3 of 6
(849 Views)

@OneOfTheDans wrote:

When I care about this, I do all my shutdown and error handling at the end of Actor Core.


You mean something like another subVI on the BD after the CPM?

CLA CLED AF Guild
0 Kudos
Message 4 of 6
(840 Views)
Solution
Accepted by topic author CaseyM

Yes, but usually not even a subVI. If my Root Actor fails before starting, it's fatal (the way my apps are structured), so I'll just drop a quick message in the Log, DB, or General Error Handler for a popup.

0 Kudos
Message 5 of 6
(838 Views)

@Dhakkan wrote:

With specific regard to the scenario brought up for the current implementation of AF, the error could be handled through a Report Error to Self. No error is fed to the Call Parent Method. That way, the root's Handle Error can decide what to do next: re-try, take an alternative course of action, alert user and terminate, etc. This would be one of the first messages created, unless the root's Pre-Launch Init or the code prior to Call Parent Method has enqueued messages to caller. (Is the latter even possible?)

 


I think either is possible, but I still like this idea. No need to create another error handling mechanism, just a way to get the error in the message handling loop where you can then decide how to deal with it. 

 

CLA CLED AF Guild
0 Kudos
Message 6 of 6
(837 Views)