Interface Command


  • public interface Command
    This is the Command interface that will be implemented to write command objects, but it is not required to implement this interface Synapse will use reflection to find an execute method as a convention in the command pattern and will start the execution from the execute method
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void execute()
      This method will be implemented with a set of getters and setters for the command properties in an implementation of a Command.
    • Method Detail

      • execute

        void execute()
        This method will be implemented with a set of getters and setters for the command properties in an implementation of a Command. CommandCommand