object DiscordShard
- Source
- DiscordShard.scala
- Alphabetic
- By Inheritance
- DiscordShard
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- sealed trait Command extends AnyRef
- case class FetchWSGatewayBotInfo(gateway: Uri, shards: Int, sessionStartLimits: SessionStartLimits) extends Product with Serializable
- case class Parameters(gatewayUri: Uri, settings: GatewaySettings, events: Events, context: ActorContext[Command], timers: TimerScheduler[Command], log: Logger) extends Product with Serializable
- case class SessionStartLimits(total: Int, remaining: Int, resetAfter: Duration, maxConcurrency: Int) extends Product with Serializable
- case class State(gatewayHandler: ActorRef[gateway.GatewayHandler.Command], isShuttingDown: Boolean = false, isRestarting: Boolean = false) extends Product with Serializable
Value Members
- def apply(wsUri: Uri, settings: GatewaySettings, events: Events): Behavior[Command]
The core actor that controls all the other used actors of AckCord
The core actor that controls all the other used actors of AckCord
- wsUri
The gateway websocket uri
- settings
The settings to use
- events
The events instance to use for this shard
- def fetchWsGateway(implicit system: ActorSystem[Nothing]): Future[Uri]
Fetch the websocket gateway.
Fetch the websocket gateway.
- system
The actor system to use.
- returns
An URI with the websocket gateway uri.
- def fetchWsGatewayWithShards(token: String)(implicit system: ActorSystem[Nothing]): Future[FetchWSGatewayBotInfo]
Fetch the websocket gateway with information about how many shards should be used.
Fetch the websocket gateway with information about how many shards should be used.
- system
The actor system to use.
- returns
An URI with the websocket gateway uri.
- def many(wsUri: Uri, shardTotal: Int, settings: GatewaySettings, events: Events): Seq[Behavior[Command]]
Create many shard actors, given the needed arguments.
Create many shard actors, given the needed arguments.
- wsUri
The websocket gateway uri.
- shardTotal
The amount of shards to create.
- settings
The settings to use.
- def startShards(shards: Seq[ActorRef[Command]])(implicit system: ActorSystem[Nothing]): Future[Done]
Sends a login message to all the shards in the sequence, while obeying IDENTIFY ratelimits.
- case object RestartShard extends Command with Product with Serializable
Send this to log out and log in again this shard.
- case object StartShard extends Command with Product with Serializable
Send this to the client to log in.
- case object StopShard extends Command with Product with Serializable
Send this to the client to log out and stop gracefully.