Class RandomCommand

java.lang.Object
java.lang.Thread
com.github.mafelp.commands.RandomCommand
All Implemented Interfaces:
java.lang.Runnable

public class RandomCommand
extends java.lang.Thread
The class the handles execution of the random command.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Thread

    java.lang.Thread.State, java.lang.Thread.UncaughtExceptionHandler
  • Field Summary

    Fields
    Modifier and Type Field Description
    private Command command
    The command which was being parsed with the CommandParser command parser.
    private static org.apache.logging.log4j.Logger logger
    The logger which is used to log statements to the console.
    private org.javacord.api.event.message.MessageCreateEvent messageCreateEvent
    The Event that is being passed to this class by the discord API.
    private static java.util.Random random
    The instance to select a random game.
    private static long threadID
    The number of threads of this kind that were being created.

    Fields inherited from class java.lang.Thread

    MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
  • Constructor Summary

    Constructors
    Constructor Description
    RandomCommand​(org.javacord.api.event.message.MessageCreateEvent messageCreateEvent, Command command)
    The constructor that initialises the command execution.
  • Method Summary

    Modifier and Type Method Description
    void run()
    The method handles the actual execution of this command.

    Methods inherited from class java.lang.Thread

    activeCount, checkAccess, clone, countStackFrames, currentThread, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, onSpinWait, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, suspend, toString, yield

    Methods inherited from class java.lang.Object

    equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • threadID

      private static long threadID
      The number of threads of this kind that were being created.
    • messageCreateEvent

      private final org.javacord.api.event.message.MessageCreateEvent messageCreateEvent
      The Event that is being passed to this class by the discord API.
    • command

      private final Command command
      The command which was being parsed with the CommandParser command parser.
    • random

      private static final java.util.Random random
      The instance to select a random game.
    • logger

      private static final org.apache.logging.log4j.Logger logger
      The logger which is used to log statements to the console.
  • Constructor Details

    • RandomCommand

      public RandomCommand​(org.javacord.api.event.message.MessageCreateEvent messageCreateEvent, Command command)
      The constructor that initialises the command execution.
      Parameters:
      messageCreateEvent - The event passed in by the bot, which contains useful information about the message.
      command - The command that was parsed.
  • Method Details

    • run

      public void run()
      The method handles the actual execution of this command.
      Specified by:
      run in interface java.lang.Runnable
      Overrides:
      run in class java.lang.Thread