All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.hyperfoil.cli.commands.Exit Maven / Gradle / Ivy

package io.hyperfoil.cli.commands;

import org.aesh.command.Command;
import org.aesh.command.CommandDefinition;
import org.aesh.command.CommandResult;

import io.hyperfoil.cli.context.HyperfoilCommandInvocation;

@CommandDefinition(name = "exit", description = "exit the program", aliases = { "quit" })
public class Exit implements Command {
   @Override
   public CommandResult execute(HyperfoilCommandInvocation invocation) {
      invocation.stop();
      return CommandResult.SUCCESS;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy