object DiscordClientActor

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

Type Members

  1. sealed trait Command extends AnyRef
  2. case class GetMusicManager(replyTo: ActorRef[GetMusicManagerReply]) extends Command with Product with Serializable
  3. case class GetMusicManagerReply(musicManager: ActorRef[MusicManager.Command]) extends Product with Serializable
  4. case class GetRatelimiterAndEvents(replyTo: ActorRef[GetRatelimiterAndEventsReply]) extends Command with Product with Serializable
  5. case class GetRatelimiterAndEventsReply(ratelimiter: ActorRef[requests.RatelimiterActor.Command], events: Events) extends Product with Serializable
  6. case class GetShards(replyTo: ActorRef[GetShardsReply]) extends Command with Product with Serializable
  7. case class GetShardsReply(shards: Seq[ActorRef[DiscordShard.Command]]) extends Product with Serializable
  8. case class Logout(timeout: FiniteDuration, replyTo: ActorRef[LogoutReply]) extends Command with Product with Serializable
  9. case class LogoutReply(done: Future[Boolean]) extends Product with Serializable

Value Members

  1. def apply(maxRequestsPerSecond: Int, counter404s: Boolean, shardBehaviors: (Events) => Seq[Behavior[DiscordShard.Command]], cacheSettings: CacheSettings): Behavior[Command]
  2. case object Login extends Command with Product with Serializable