Minestom/src/main/java/net/minestom/server/command/builder/CommandExecutor.java
2021-03-10 06:38:51 +01:00

21 lines
731 B
Java

package net.minestom.server.command.builder;
import net.minestom.server.command.CommandSender;
import org.jetbrains.annotations.NotNull;
/**
* Callback executed once a syntax has been found for a {@link Command}.
* <p>
* Warning: it could be the default executor from {@link Command#getDefaultExecutor()} if not null.
*/
@FunctionalInterface
public interface CommandExecutor {
/**
* Executes the command callback once the syntax has been called (or the default executor).
*
* @param sender the sender of the command
* @param context the command context, used to retrieve the arguments and various other things
*/
void apply(@NotNull CommandSender sender, @NotNull CommandContext context);
}