Example #1
0
        /***************************************************/

        public bool RunCommand(IExecuteCommand command)
        {
            Engine.Base.Compute.RecordWarning($"The command {command.GetType().Name} is not supported by this Adapter.");
            return(false);
        }
Example #2
0
 // Fallback case
 private bool RunCommand(IExecuteCommand command)
 {
     BH.Engine.Base.Compute.RecordError($"The command {command.GetType().Name} is not supported by {this.GetType().Name}");
     return(true);
 }