Packages

trait Request[+Data] extends AnyRef

Base super simple trait for all HTTP requests in AckCord.

Data

The parsed response type.

Self Type
Request[Data]
Source
requestObjs.scala
Linear Supertypes
Known Subclasses
BatchEditApplicationCommandPermissions, BulkOverwriteGlobalApplicationCommands, BulkOverwriteGuildApplicationCommands, CreateGlobalApplicationCommand, CreateGuildApplicationCommand, CreateInteractionResponse, DeleteGlobalApplicationCommand, DeleteGuildApplicationCommand, EditApplicationCommandPermissions, EditGlobalApplicationCommand, EditGuildApplicationCommand, GetApplicationCommandPermissions, GetGlobalApplicationCommand, GetGlobalApplicationCommands, GetGuildApplicationCommand, GetGuildApplicationCommandPermissions, GetGuildApplicationCommands, AddGuildMember, AddGuildMemberRole, AddThreadMember, BaseRESTRequest, BeginGuildPrune, BulkDeleteMessages, CreateChannelInvite, CreateDm, CreateFollowupMessage, CreateGuild, CreateGuildBan, CreateGuildChannel, CreateGuildEmoji, CreateGuildFromTemplate, CreateGuildRole, CreateGuildScheduledEvent, CreateGuildSticker, CreateGuildTemplate, CreateMessage, CreateReaction, CreateStageInstance, CreateWebhook, CrosspostMessage, DeleteAllReactions, DeleteAllReactionsForEmoji, DeleteChannelPermission, DeleteCloseChannel, DeleteGuild, DeleteGuildEmoji, DeleteGuildIntegration, DeleteGuildRole, DeleteGuildScheduledEvent, DeleteGuildSticker, DeleteGuildTemplate, DeleteInvite, DeleteMessage, DeleteOriginalWebhookMessage, DeleteOwnReaction, DeleteStageInstance, DeleteUserReaction, DeleteWebhook, DeleteWebhookMessage, DeleteWebhookWithToken, EditChannelPermissions, EditMessage, EditOriginalWebhookMessage, EditWebhookMessage, ExecuteWebhook, FollowNewsChannel, GetAchievementIconImage, GetApplicationAssetImage, GetApplicationCoverImage, GetApplicationIconImage, GetChannel, GetChannelInvites, GetChannelMessage, GetChannelMessages, GetChannelWebhooks, GetCurrentUser, GetCurrentUserGuilds, GetCustomEmojiImage, GetDefaultUserAvatarImage, GetDiscoverySplashImage, GetGuild, GetGuildAuditLog, GetGuildBan, GetGuildBannerImage, GetGuildBans, GetGuildChannels, GetGuildEmoji, GetGuildIconImage, GetGuildIntegrations, GetGuildInvites, GetGuildMember, GetGuildPreview, GetGuildPruneCount, GetGuildRoles, GetGuildScheduledEvent, GetGuildScheduledEventUsers, GetGuildSplashImage, GetGuildSticker, GetGuildTemplate, GetGuildTemplates, GetGuildVanityUrl, GetGuildVoiceRegions, GetGuildWebhooks, GetGuildWelcomeScreen, GetGuildWidget, GetGuildWidgetImage, GetGuildWidgetSettings, GetInvite, GetOriginalWebhookMessage, GetPinnedMessages, GetReactions, GetRoleIconImage, GetStageInstance, GetSticker, GetStickerImage, GetStickerPackBannerImage, GetTeamIconImage, GetThreadMember, GetUser, GetUserAvatarImage, GetUserBannerImage, GetUserConnections, GetUserGuildAvatarImage, GetWebhook, GetWebhookMessage, GetWebhookWithToken, GuildMemberRequest, ImageRequest, JoinThread, LeaveGuild, LeaveThread, ListActiveGuildThreads, ListGuildEmojis, ListGuildMembers, ListGuildStickers, ListJoinedPrivateArchivedThreads, ListNitroStickerPacks, ListPrivateArchivedThreads, ListPublicArchivedThreads, ListScheduledEventsForGuild, ListThreadMembers, ListVoiceRegions, ModifyChannel, ModifyCurrentMember, ModifyCurrentUser, ModifyGuild, ModifyGuildChannelPositions, ModifyGuildEmoji, ModifyGuildMember, ModifyGuildRole, ModifyGuildRolePositions, ModifyGuildScheduledEvent, ModifyGuildSticker, ModifyGuildTemplate, ModifyGuildWelcomeScreen, ModifyGuildWidget, ModifyWebhook, ModifyWebhookWithToken, NoNiceResponseReasonRequest, NoNiceResponseRequest, NoParamsNiceResponseReasonRequest, NoParamsNiceResponseRequest, NoParamsReasonRequest, NoParamsRequest, NoParamsResponseReasonRequest, NoParamsResponseRequest, NoResponseReasonRequest, NoResponseRequest, GetCurrentAuthorizationInformation, GetCurrentBotApplicationInformation, PinMessage, RESTRequest, ReasonRequest, RemoveGuildBan, RemoveGuildMember, RemoveGuildMemberRole, RemoveThreadMember, SearchGuildMembers, StartThreadWithMessage, StartThreadWithoutMessage, SyncGuildTemplate, TriggerTypingIndicator, UnpinMessage, UpdateCurrentUserVoiceState, UpdateStageInstance, UpdateUserVoiceState, CreateGroupDm, ListActiveChannelThreads, ModifyBotUsersNick
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Request
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def bodyForLogging: Option[String]

    Returns the body of this Request for use in logging.

  2. abstract def hasPermissions(implicit c: CacheSnapshot): Boolean

    Check if a client has the needed permissions to execute this request.

  3. abstract def parseResponse(entity: ResponseEntity)(implicit system: ActorSystem[Nothing]): Future[Data]

    A flow that can be used to parse the responses from this request.

  4. abstract def requestBody: RequestEntity

    The body of the request to send.

  5. abstract def route: RequestRoute

    The router for this request.

Concrete 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  6. def collect[B](f: PartialFunction[Data, B]): Request[B]

    Map the result if the function is defined for the response data.

  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def extraHeaders: Seq[HttpHeader]

    All the extra headers to send with this request.

  10. def filter(f: (Data) => Boolean): Request[Data]

    Filter the response of sending this request.

  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  13. val identifier: UUID

    An unique identifier to track this request from creation to answer.

  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def map[B](f: (Data) => B): Request[B]

    Map the result of sending this request.

  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. def transformResponse[B](f: (ExecutionContext) => (Future[Data]) => Future[B]): Request[B]

    Transform the response of this request as a flow.

  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])

Deprecated Value Members

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

Inherited from AnyRef

Inherited from Any

Ungrouped