c

ackcord.interactions.commands

UserCommandBuilder

class UserCommandBuilder[Interaction[_]] extends CommandBuilder[Interaction, (User, Option[InteractionRawGuildMember])]

A builder for user commands.

Source
UserCommandBuilder.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UserCommandBuilder
  2. CommandBuilder
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new UserCommandBuilder(defaultPermission: Boolean, transformer: DataInteractionTransformer[CommandInteraction, Interaction], extra: Map[String, String])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def andThen[To2[_]](nextTransformer: DataInteractionTransformer[Interaction, To2]): UserCommandBuilder[To2]

    Use a new transformer on the current transformer.

    Use a new transformer on the current transformer.

    Definition Classes
    UserCommandBuilderCommandBuilder
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  7. def defaultPermission(permission: Boolean): UserCommandBuilder[Interaction]
    Definition Classes
    UserCommandBuilderCommandBuilder
  8. val defaultPermission: Boolean
    Definition Classes
    UserCommandBuilderCommandBuilder
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. val extra: Map[String, String]

    Extra info to associate with the command.

    Extra info to associate with the command.

    Definition Classes
    UserCommandBuilderCommandBuilder
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  13. def handle(name: String)(handler: (Interaction[(User, Option[InteractionRawGuildMember])]) => InteractionResponse): UserCommand[Interaction]

    Create a new user command.

    Create a new user command.

    name

    The name of the command.

    handler

    The handler for the command.

  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  19. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. val transformer: DataInteractionTransformer[CommandInteraction, Interaction]

    A transformer to do base processing of the interaction before handling it.

    A transformer to do base processing of the interaction before handling it.

    Definition Classes
    UserCommandBuilderCommandBuilder
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. def withExtra(extra: Map[String, String]): UserCommandBuilder[Interaction]

    Sets the extra info associated with the command.

    Sets the extra info associated with the command.

    Definition Classes
    UserCommandBuilderCommandBuilder
  26. def withTransformer[NewTo[_]](transformer: DataInteractionTransformer[CommandInteraction, NewTo]): UserCommandBuilder[NewTo]

    Sets the transformer to process the interaction first.

    Sets the transformer to process the interaction first.

    Definition Classes
    UserCommandBuilderCommandBuilder

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from CommandBuilder[Interaction, (User, Option[InteractionRawGuildMember])]

Inherited from AnyRef

Inherited from Any

Ungrouped