case class GatewaySettings(token: String, largeThreshold: Int = 50, shardNum: Int = 0, shardTotal: Int = 1, idleSince: Option[Instant] = None, activities: Seq[RawActivity] = Nil, status: PresenceStatus = PresenceStatus.Online, afk: Boolean = false, intents: GatewayIntents = GatewayIntents.AllNonPrivileged, compress: Compress = Compress.ZLibStreamCompress, eventDecoders: EventDecoders = GatewayProtocol.ackcordEventDecoders, restartBackoff: () => FiniteDuration = () => 5.minutes) extends Product with Serializable
All the settings used by AckCord when connecting and similar
- token
The token for the bot
- largeThreshold
The large threshold
- shardNum
The shard index of this
- shardTotal
The amount of shards
- idleSince
If the bot has been idle, set the time since
- activities
Send an activity when connecting
- status
The status to use when connecting
- afk
If the bot should be afk when connecting
- intents
Sets which events the gateway should send to the bot.
- Source
- GatewaySettings.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- GatewaySettings
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new GatewaySettings(token: String, largeThreshold: Int = 50, shardNum: Int = 0, shardTotal: Int = 1, idleSince: Option[Instant] = None, activities: Seq[RawActivity] = Nil, status: PresenceStatus = PresenceStatus.Online, afk: Boolean = false, intents: GatewayIntents = GatewayIntents.AllNonPrivileged, compress: Compress = Compress.ZLibStreamCompress, eventDecoders: EventDecoders = GatewayProtocol.ackcordEventDecoders, restartBackoff: () => FiniteDuration = () => 5.minutes)
- token
The token for the bot
- largeThreshold
The large threshold
- shardNum
The shard index of this
- shardTotal
The amount of shards
- idleSince
If the bot has been idle, set the time since
- activities
Send an activity when connecting
- status
The status to use when connecting
- afk
If the bot should be afk when connecting
- intents
Sets which events the gateway should send to the bot.
Value Members
- val activities: Seq[RawActivity]
- val afk: Boolean
- val compress: Compress
- val eventDecoders: EventDecoders
- val idleSince: Option[Instant]
- val intents: GatewayIntents
- val largeThreshold: Int
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val restartBackoff: () => FiniteDuration
- val shardNum: Int
- val shardTotal: Int
- val status: PresenceStatus
- val token: String