Remora.Discord.Gateway
8.1.5
Prefix Reserved
See the version list below for details.
dotnet add package Remora.Discord.Gateway --version 8.1.5
NuGet\Install-Package Remora.Discord.Gateway -Version 8.1.5
<PackageReference Include="Remora.Discord.Gateway" Version="8.1.5" />
paket add Remora.Discord.Gateway --version 8.1.5
#r "nuget: Remora.Discord.Gateway, 8.1.5"
// Install Remora.Discord.Gateway as a Cake Addin #addin nuget:?package=Remora.Discord.Gateway&version=8.1.5 // Install Remora.Discord.Gateway as a Cake Tool #tool nuget:?package=Remora.Discord.Gateway&version=8.1.5
Remora.Discord.Gateway
This package provides a fully-featured implementation of a Discord gateway client, complete with resume capabilities and user-facing events.
Structure
The package consists of two main parts - the client itself, and the event dispatch system. The latter will be familiar to users of the mediator pattern, wherein an intermediate type handles communication between separate objects; in Remora.Discord.Gateway's case, all incoming Discord events are dispatched and executed concurrently with each other, and the user may register responders to handle these events.
Provided you yourself do not inject services with a shared mutable state, all responders are thread-safe and do not require additional synchronization through semaphores or mutexes.
The client is a singleton service by design.
Usage
First and foremost, the gateway client must be registered with your dependency injection container.
services.AddDiscordGateway(serviceProvider => GetTokenFromSomewhere(serviceProvider));
Two things to note:
- You are not required to call any other methods from dependency libraries
(such as
Remora.Discord.API
) - this call takes care of all transitive dependencies itself. - You must, at this point, provide a way to access your bot's token in plain text. This access only happens after the container is constructed, and an API instance is requested, so you have access to the built container.
After this point, you may inject the gateway client into your own services. In
order to connect and start dispatching events, you must call RunAsync
somewhere, and subsequently either await the task directly or store it for later
use. This task represents the entire lifetime of the gateway client, and will
run until you explicitly request its termination via the cancellation token
passed to this method.
If you wish to explicitly send a gateway command (for example, to update
presence information), you may do so via the SubmitCommand
method on the
client. Note that no validations are performed on this command, so you can cause
unexpected termination of your session if the data is malformed or inappropriate
for the current state of the client.
Responders - the types which react to and handle incoming events - are created
by declaring a class that implements one or more instances of the
IResponder<T>
interface, and then registering these types with the service
container.
public class MyResponder : IResponder<IMessageCreate>
{
public async Task<Result> RespondAsync
(
IMessageCreate gatewayEvent,
CancellationToken ct = default
)
{
// ...
}
}
...
services.AddResponder<MyResponder>();
There are no restrictions placed on how long an individual responder may run, but you should strive to keep it short in order to avoid thread pool exhaustion.
Responders have no guarantees related to sequential execution, but you are able to sort them into one of three "groups", which do run sequentially to one another.
services.AddResponder<MyResponder>(ResponderGroup.Early); // executes before...
services.AddResponder<MyResponder>(ResponderGroup.Normal); // executes before...
services.AddResponder<MyResponder>(ResponderGroup.Late);
This is useful in cases where two responders to the same event depend on each other in some way.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Remora.Discord.Rest (>= 39.0.0)
- System.Threading.Channels (>= 6.0.0)
-
net5.0
- Remora.Discord.Rest (>= 39.0.0)
- System.Threading.Channels (>= 6.0.0)
-
net6.0
- Remora.Discord.Rest (>= 39.0.0)
- System.Threading.Channels (>= 6.0.0)
NuGet packages (6)
Showing the top 5 NuGet packages that depend on Remora.Discord.Gateway:
Package | Downloads |
---|---|
Remora.Discord.Commands
Glue code for using Remora.Commands with Remora.Discord |
|
Remora.Discord.Hosting
Implementation of a hosted Discord gateway service for the .NET Generic Host |
|
Remora.Discord.Interactivity
Framework for using Discord's interaction-driven message components |
|
Remora.Discord.Extensions
Utilities and components which extend upon Remora.Discord's base resources |
|
Remora.Discord.Caching
Caching implementations of Remora.Discord's services |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
12.0.2 | 33,143 | 5/28/2024 | |
12.0.1 | 25,787 | 2/5/2024 | |
12.0.0 | 47,482 | 11/14/2023 | |
11.1.0 | 29,851 | 7/24/2023 | |
11.0.7 | 19,249 | 5/11/2023 | |
11.0.6 | 2,840 | 3/20/2023 | |
11.0.5 | 3,470 | 1/19/2023 | |
11.0.4 | 2,836 | 1/10/2023 | |
11.0.3 | 3,198 | 12/28/2022 | |
11.0.2 | 5,809 | 12/10/2022 | |
11.0.1 | 3,532 | 10/30/2022 | |
11.0.0 | 19,936 | 9/2/2022 | |
10.1.7 | 3,558 | 8/19/2022 | |
10.1.6 | 3,418 | 7/28/2022 | |
10.1.5 | 3,323 | 7/26/2022 | |
10.1.4 | 3,150 | 7/26/2022 | |
10.1.3 | 7,116 | 6/29/2022 | |
10.1.2 | 3,195 | 6/27/2022 | |
10.1.1 | 3,490 | 6/23/2022 | |
10.1.0 | 4,143 | 6/20/2022 | |
10.0.0 | 3,208 | 6/19/2022 | |
9.0.0 | 3,226 | 6/18/2022 | |
8.1.5 | 3,264 | 6/14/2022 | |
8.1.4 | 3,244 | 6/8/2022 | |
8.1.3 | 3,238 | 6/3/2022 | |
8.1.2 | 3,230 | 5/25/2022 | |
8.1.1 | 3,221 | 5/23/2022 | |
8.1.0 | 3,437 | 5/15/2022 | |
8.0.6 | 3,327 | 5/10/2022 | |
8.0.5 | 5,560 | 5/3/2022 | |
8.0.4 | 6,602 | 4/25/2022 | |
8.0.3 | 3,999 | 4/18/2022 | |
8.0.2 | 2,870 | 4/2/2022 | |
8.0.1 | 5,048 | 4/2/2022 | |
8.0.0 | 3,469 | 3/21/2022 | |
7.2.0 | 3,297 | 3/17/2022 | |
7.1.0 | 2,955 | 3/15/2022 | |
7.0.1 | 4,415 | 2/20/2022 | |
7.0.0 | 3,024 | 2/19/2022 | |
7.0.0-rc1 | 1,172 | 2/14/2022 | |
6.2.10 | 3,071 | 2/14/2022 | |
6.2.9 | 3,274 | 1/27/2022 | |
6.2.7 | 5,158 | 1/11/2022 | |
6.2.6 | 35,498 | 1/2/2022 | |
6.2.5 | 3,163 | 12/23/2021 | |
6.2.4 | 1,391 | 12/21/2021 | |
6.2.3 | 1,613 | 12/16/2021 | |
6.2.2 | 1,488 | 12/11/2021 | |
6.2.1 | 1,651 | 12/5/2021 | |
6.2.0 | 3,273 | 11/26/2021 | |
6.1.0 | 7,187 | 11/24/2021 | |
6.0.0 | 2,512 | 11/20/2021 | |
5.0.4 | 2,186 | 11/9/2021 | |
5.0.3 | 1,988 | 11/6/2021 | |
5.0.2 | 2,280 | 10/30/2021 | |
5.0.1 | 1,655 | 10/28/2021 | |
5.0.0 | 3,890 | 10/15/2021 | |
4.0.15 | 2,269 | 10/7/2021 | |
4.0.13 | 1,810 | 10/3/2021 | |
4.0.12 | 1,621 | 10/2/2021 | |
4.0.11 | 1,559 | 9/30/2021 | |
4.0.10 | 2,190 | 9/26/2021 | |
4.0.9 | 1,636 | 9/24/2021 | |
4.0.8 | 1,652 | 9/23/2021 | |
4.0.7 | 1,637 | 9/16/2021 | |
4.0.6 | 1,714 | 9/15/2021 | |
4.0.5 | 1,783 | 9/8/2021 | |
4.0.4 | 2,975 | 9/4/2021 | |
4.0.3 | 3,329 | 8/21/2021 | |
4.0.2 | 1,819 | 8/18/2021 | |
4.0.1 | 2,749 | 8/12/2021 | |
4.0.0 | 1,456 | 8/11/2021 | |
3.5.8 | 2,000 | 8/11/2021 | |
3.5.7 | 1,871 | 8/2/2021 | |
3.5.6 | 2,107 | 8/2/2021 | |
3.5.5 | 2,167 | 7/31/2021 | |
3.5.4 | 1,701 | 7/29/2021 | |
3.5.3 | 1,632 | 7/28/2021 | |
3.5.2 | 1,553 | 7/28/2021 | |
3.5.1 | 2,068 | 7/22/2021 | |
3.5.0 | 1,700 | 7/17/2021 | |
3.4.6 | 1,636 | 7/14/2021 | |
3.4.5 | 1,772 | 7/12/2021 | |
3.4.4 | 1,671 | 7/11/2021 | |
3.4.3 | 1,676 | 7/5/2021 | |
3.4.2 | 1,531 | 7/3/2021 | |
3.4.1 | 1,542 | 7/1/2021 | |
3.4.0 | 1,859 | 6/14/2021 | |
3.3.1 | 837 | 6/10/2021 | |
3.3.1-beta2 | 1,054 | 5/30/2021 | |
3.3.1-beta1 | 1,463 | 5/28/2021 | |
3.3.0 | 1,533 | 5/23/2021 | |
3.2.1 | 1,711 | 5/20/2021 | |
3.2.0 | 2,042 | 5/4/2021 | |
3.1.14 | 1,690 | 4/22/2021 | |
3.1.13 | 1,666 | 4/15/2021 | |
3.1.12 | 1,680 | 4/10/2021 | |
3.1.11 | 1,837 | 4/5/2021 | |
3.1.10 | 1,737 | 4/4/2021 | |
3.1.9 | 2,341 | 3/28/2021 | |
3.1.8 | 2,590 | 3/25/2021 | |
3.1.7 | 1,452 | 3/25/2021 | |
3.1.6 | 2,191 | 3/16/2021 | |
3.1.5 | 1,642 | 3/14/2021 | |
3.1.4 | 1,618 | 3/13/2021 | |
3.1.3 | 1,633 | 3/11/2021 | |
3.1.2 | 1,941 | 3/6/2021 | |
3.1.1 | 1,725 | 3/1/2021 | |
3.1.0 | 1,699 | 3/1/2021 | |
3.0.7 | 1,791 | 2/28/2021 | |
3.0.6 | 1,507 | 2/23/2021 | |
3.0.5 | 2,093 | 2/22/2021 | |
3.0.4 | 1,644 | 2/21/2021 | |
3.0.3 | 1,342 | 2/16/2021 | |
3.0.2 | 1,756 | 2/13/2021 | |
3.0.1 | 1,962 | 2/11/2021 | |
3.0.0 | 1,660 | 2/10/2021 | |
2.2.3 | 1,496 | 2/6/2021 | |
2.2.2 | 1,547 | 2/5/2021 | |
2.2.1 | 1,477 | 1/29/2021 | |
2.2.0 | 1,455 | 1/27/2021 | |
2.1.1 | 1,793 | 1/21/2021 | |
2.1.0 | 1,669 | 1/17/2021 | |
2.0.1 | 1,572 | 1/10/2021 | |
2.0.0 | 1,683 | 1/10/2021 | |
1.1.2 | 1,622 | 1/9/2021 | |
1.1.1 | 1,767 | 12/31/2020 | |
1.1.0 | 1,637 | 12/27/2020 | |
1.0.1 | 2,191 | 12/25/2020 | |
1.0.0 | 1,450 | 12/25/2020 | |
1.0.0-beta9 | 1,014 | 12/10/2020 | |
1.0.0-beta8 | 1,007 | 11/26/2020 | |
1.0.0-beta7 | 966 | 11/15/2020 | |
1.0.0-beta6 | 958 | 11/14/2020 | |
1.0.0-beta5 | 1,036 | 11/8/2020 | |
1.0.0-beta4 | 454 | 11/8/2020 | |
1.0.0-beta3 | 394 | 10/17/2020 | |
1.0.0-beta2 | 395 | 10/6/2020 | |
1.0.0-beta11 | 937 | 12/23/2020 | |
1.0.0-beta10 | 995 | 12/18/2020 | |
1.0.0-beta1 | 403 | 10/6/2020 | |
1.0.0-alpha1 | 396 | 9/27/2020 |
Update dependencies.