Class

ackcord.newcommands

CommandController

Related Doc: package newcommands

Permalink

abstract class CommandController[F[_]] extends AnyRef

The base command controller that you will place your commands in. Contains partially applied types, and the Command builder object.

F

The type of effect for the cache

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CommandController
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CommandController(requests: RequestHelper)(implicit arg0: Streamable[F], arg1: Monad[F])

    Permalink

Type Members

  1. type Command[A] = newcommands.Command[F, A, NotUsed]

    Permalink
  2. type CommandBuilder[+M[_], A] = newcommands.CommandBuilder[F, M, A]

    Permalink
  3. type CommandFunction[-I[_], +O[_]] = newcommands.CommandFunction[F, I, O]

    Permalink
  4. type CommandMessage[+A] = newcommands.CommandMessage[F, A]

    Permalink
  5. type CommandTransformer[-I[_], +O[_]] = newcommands.CommandTransformer[F, I, O]

    Permalink
  6. type ComplexCommand[A, Mat] = newcommands.Command[F, A, Mat]

    Permalink
  7. type GuildCommandMessage[+A] = newcommands.GuildCommandMessage[F, A]

    Permalink
  8. type GuildMemberCommandMessage[+A] = newcommands.GuildMemberCommandMessage[F, A]

    Permalink
  9. type GuildUserCommandMessage[+A] = GuildCommandMessage[A] with UserCommandMessage[A]

    Permalink
  10. type UserCommandMessage[+A] = newcommands.UserCommandMessage[F, A]

    Permalink
  11. type VoiceGuildCommandMessage[+A] = newcommands.VoiceGuildCommandMessage[F, A]

    Permalink
  12. type VoiceGuildMemberCommandMessage[+A] = GuildMemberCommandMessage[A] with VoiceGuildCommandMessage[A]

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. val Command: CommandBuilder[UserCommandMessage, List[String]]

    Permalink

    The default command builder you will use to create most of your commands.

    The default command builder you will use to create most of your commands. By default blocks bots from using the commands.

  5. object CommandFunction

    Permalink

    Various command functions to filter or transform command messages.

  6. val GuildCommand: CommandBuilder[GuildMemberCommandMessage, List[String]]

    Permalink

    Another default command builder for you to use.

    Another default command builder for you to use. Can only be used in guilds, and includes the guild, guild channel and user of the command.

  7. val GuildVoiceCommand: CommandBuilder[VoiceGuildMemberCommandMessage, List[String]]

    Permalink

    A command builder that only accepts users that are in a voice channel.

  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. val baseCommandBuilder: CommandBuilder[CommandMessage, List[String]]

    Permalink

    The base command builder that you can build off if you don't like the default provided builder.

  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. implicit val ec: ExecutionContext

    Permalink
  12. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. implicit def findCache[A](implicit message: CommandMessage[A]): CacheSnapshot[F]

    Permalink
  16. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. implicit val requestRunner: RequestRunner[SourceRequest, F]

    Permalink
  23. val requests: RequestHelper

    Permalink
  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  25. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped