Remora.Discord.Gateway 13.0.0

Prefix Reserved
dotnet add package Remora.Discord.Gateway --version 13.0.0                
NuGet\Install-Package Remora.Discord.Gateway -Version 13.0.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Remora.Discord.Gateway" Version="13.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Remora.Discord.Gateway --version 13.0.0                
#r "nuget: Remora.Discord.Gateway, 13.0.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Remora.Discord.Gateway as a Cake Addin
#addin nuget:?package=Remora.Discord.Gateway&version=13.0.0

// Install Remora.Discord.Gateway as a Cake Tool
#tool nuget:?package=Remora.Discord.Gateway&version=13.0.0                

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 Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 is compatible.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (7)

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
13.0.0 2,481 2/13/2025
12.0.2 46,302 5/28/2024
12.0.1 26,202 2/5/2024
12.0.0 47,733 11/14/2023
11.1.0 29,888 7/24/2023
11.0.7 19,275 5/11/2023
11.0.6 2,861 3/20/2023
11.0.5 3,492 1/19/2023
11.0.4 2,853 1/10/2023
11.0.3 3,214 12/28/2022
11.0.2 5,827 12/10/2022
11.0.1 3,555 10/30/2022
11.0.0 19,962 9/2/2022
10.1.7 3,578 8/19/2022
10.1.6 3,436 7/28/2022
10.1.5 3,340 7/26/2022
10.1.4 3,167 7/26/2022
10.1.3 7,132 6/29/2022
10.1.2 3,211 6/27/2022
10.1.1 3,511 6/23/2022
10.1.0 4,158 6/20/2022
10.0.0 3,223 6/19/2022
9.0.0 3,257 6/18/2022
8.1.5 3,279 6/14/2022
8.1.4 3,260 6/8/2022
8.1.3 3,256 6/3/2022
8.1.2 3,247 5/25/2022
8.1.1 3,237 5/23/2022
8.1.0 3,455 5/15/2022
8.0.6 3,342 5/10/2022
8.0.5 5,575 5/3/2022
8.0.4 6,617 4/25/2022
8.0.3 4,014 4/18/2022
8.0.2 2,885 4/2/2022
8.0.1 5,065 4/2/2022
8.0.0 3,485 3/21/2022
7.2.0 3,313 3/17/2022
7.1.0 2,970 3/15/2022
7.0.1 4,430 2/20/2022
7.0.0 3,040 2/19/2022
7.0.0-rc1 1,184 2/14/2022
6.2.10 3,086 2/14/2022
6.2.9 3,289 1/27/2022
6.2.7 5,175 1/11/2022
6.2.6 35,531 1/2/2022
6.2.5 3,180 12/23/2021
6.2.4 1,408 12/21/2021
6.2.3 1,632 12/16/2021
6.2.2 1,503 12/11/2021
6.2.1 1,666 12/5/2021
6.2.0 3,291 11/26/2021
6.1.0 7,204 11/24/2021
6.0.0 2,531 11/20/2021
5.0.4 2,203 11/9/2021
5.0.3 2,007 11/6/2021
5.0.2 2,315 10/30/2021
5.0.1 1,672 10/28/2021
5.0.0 3,907 10/15/2021
4.0.15 2,286 10/7/2021
4.0.13 1,828 10/3/2021
4.0.12 1,638 10/2/2021
4.0.11 1,576 9/30/2021
4.0.10 2,210 9/26/2021
4.0.9 1,654 9/24/2021
4.0.8 1,668 9/23/2021
4.0.7 1,654 9/16/2021
4.0.6 1,734 9/15/2021
4.0.5 1,806 9/8/2021
4.0.4 2,993 9/4/2021
4.0.3 3,348 8/21/2021
4.0.2 1,836 8/18/2021
4.0.1 2,766 8/12/2021
4.0.0 1,473 8/11/2021
3.5.8 2,017 8/11/2021
3.5.7 1,886 8/2/2021
3.5.6 2,122 8/2/2021
3.5.5 2,183 7/31/2021
3.5.4 1,718 7/29/2021
3.5.3 1,648 7/28/2021
3.5.2 1,569 7/28/2021
3.5.1 2,086 7/22/2021
3.5.0 1,717 7/17/2021
3.4.6 1,651 7/14/2021
3.4.5 1,788 7/12/2021
3.4.4 1,688 7/11/2021
3.4.3 1,692 7/5/2021
3.4.2 1,548 7/3/2021
3.4.1 1,558 7/1/2021
3.4.0 1,877 6/14/2021
3.3.1 853 6/10/2021
3.3.1-beta2 1,067 5/30/2021
3.3.1-beta1 1,475 5/28/2021
3.3.0 1,549 5/23/2021
3.2.1 1,725 5/20/2021
3.2.0 2,057 5/4/2021
3.1.14 1,705 4/22/2021
3.1.13 1,681 4/15/2021
3.1.12 1,695 4/10/2021
3.1.11 1,852 4/5/2021
3.1.10 1,753 4/4/2021
3.1.9 2,356 3/28/2021
3.1.8 2,608 3/25/2021
3.1.7 1,467 3/25/2021
3.1.6 2,207 3/16/2021
3.1.5 1,665 3/14/2021
3.1.4 1,633 3/13/2021
3.1.3 1,650 3/11/2021
3.1.2 1,958 3/6/2021
3.1.1 1,743 3/1/2021
3.1.0 1,721 3/1/2021 3.1.0 is deprecated because it has critical bugs.
3.0.7 1,808 2/28/2021
3.0.6 1,522 2/23/2021
3.0.5 2,108 2/22/2021
3.0.4 1,659 2/21/2021
3.0.3 1,358 2/16/2021
3.0.2 1,771 2/13/2021
3.0.1 1,977 2/11/2021
3.0.0 1,676 2/10/2021
2.2.3 1,512 2/6/2021
2.2.2 1,562 2/5/2021
2.2.1 1,494 1/29/2021
2.2.0 1,471 1/27/2021
2.1.1 1,820 1/21/2021
2.1.0 1,684 1/17/2021
2.0.1 1,587 1/10/2021
2.0.0 1,698 1/10/2021
1.1.2 1,638 1/9/2021
1.1.1 1,786 12/31/2020
1.1.0 1,654 12/27/2020
1.0.1 2,206 12/25/2020
1.0.0 1,472 12/25/2020
1.0.0-beta9 1,031 12/10/2020
1.0.0-beta8 1,018 11/26/2020
1.0.0-beta7 977 11/15/2020
1.0.0-beta6 971 11/14/2020
1.0.0-beta5 1,047 11/8/2020
1.0.0-beta4 465 11/8/2020
1.0.0-beta3 408 10/17/2020
1.0.0-beta2 406 10/6/2020
1.0.0-beta11 948 12/23/2020
1.0.0-beta10 1,006 12/18/2020
1.0.0-beta1 414 10/6/2020
1.0.0-alpha1 407 9/27/2020

BREAKING: Update target frameworks.
           BREAKING: Update dependencies.
           BREAKING: Catch-up on all discord features...