handleMessage method
Returns true if the given message was processed by the current subgoal.
Implementation
@override
bool handleMessage( telegram ) {
final subgoal = currentSubgoal();
if ( subgoal != null ) {
return subgoal.handleMessage( telegram );
}
return false;
}