Remora.Discord.Gateway 12.0.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
.NET 6.0 .NET Standard 2.1
dotnet add package Remora.Discord.Gateway --version 12.0.0
NuGet\Install-Package Remora.Discord.Gateway -Version 12.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="12.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 12.0.0
#r "nuget: Remora.Discord.Gateway, 12.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=12.0.0

// Install Remora.Discord.Gateway as a Cake Tool
#tool nuget:?package=Remora.Discord.Gateway&version=12.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 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 is compatible.  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-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. 
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on Remora.Discord.Gateway:

Package Downloads
Remora.Discord.Commands The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Glue code for using Remora.Commands with Remora.Discord

Remora.Discord.Hosting The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Implementation of a hosted Discord gateway service for the .NET Generic Host

Remora.Discord.Interactivity The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Framework for using Discord's interaction-driven message components

Remora.Discord.Caching The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Caching implementations of Remora.Discord's services

Remora.Discord.Extensions The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Utilities and components which extend upon Remora.Discord's base resources

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
12.0.0 2,766 11/14/2023
11.1.0 26,682 7/24/2023
11.0.7 18,189 5/11/2023
11.0.6 1,820 3/20/2023
11.0.5 2,468 1/19/2023
11.0.4 1,812 1/10/2023
11.0.3 2,252 12/28/2022
11.0.2 4,077 12/10/2022
11.0.1 2,651 10/30/2022
11.0.0 19,177 9/2/2022
10.1.7 2,902 8/19/2022
10.1.6 2,777 7/28/2022
10.1.5 2,662 7/26/2022
10.1.4 2,456 7/26/2022
10.1.3 6,077 6/29/2022
10.1.2 2,533 6/27/2022
10.1.1 2,733 6/23/2022
10.1.0 3,418 6/20/2022
10.0.0 2,518 6/19/2022
9.0.0 2,566 6/18/2022
8.1.5 2,578 6/14/2022
8.1.4 2,547 6/8/2022
8.1.3 2,568 6/3/2022
8.1.2 2,576 5/25/2022
8.1.1 2,528 5/23/2022
8.1.0 2,731 5/15/2022
8.0.6 2,572 5/10/2022
8.0.5 4,513 5/3/2022
8.0.4 5,459 4/25/2022
8.0.3 3,218 4/18/2022
8.0.2 2,210 4/2/2022
8.0.1 3,917 4/2/2022
8.0.0 2,760 3/21/2022
7.2.0 2,552 3/17/2022
7.1.0 2,261 3/15/2022
7.0.1 3,547 2/20/2022
7.0.0 2,301 2/19/2022
7.0.0-rc1 523 2/14/2022
6.2.10 2,351 2/14/2022
6.2.9 2,620 1/27/2022
6.2.7 4,350 1/11/2022
6.2.6 34,755 1/2/2022
6.2.5 2,146 12/23/2021
6.2.4 927 12/21/2021
6.2.3 1,162 12/16/2021
6.2.2 1,009 12/11/2021
6.2.1 1,157 12/5/2021
6.2.0 2,766 11/26/2021
6.1.0 6,756 11/24/2021
6.0.0 2,007 11/20/2021
5.0.4 1,745 11/9/2021
5.0.3 1,459 11/6/2021
5.0.2 1,748 10/30/2021
5.0.1 1,215 10/28/2021
5.0.0 3,378 10/15/2021
4.0.15 1,768 10/7/2021
4.0.13 1,310 10/3/2021
4.0.12 1,153 10/2/2021
4.0.11 1,096 9/30/2021
4.0.10 1,654 9/26/2021
4.0.9 1,130 9/24/2021
4.0.8 1,170 9/23/2021
4.0.7 1,157 9/16/2021
4.0.6 1,230 9/15/2021
4.0.5 1,321 9/8/2021
4.0.4 2,464 9/4/2021
4.0.3 2,779 8/21/2021
4.0.2 1,330 8/18/2021
4.0.1 1,930 8/12/2021
4.0.0 968 8/11/2021
3.5.8 1,466 8/11/2021
3.5.7 1,400 8/2/2021
3.5.6 1,580 8/2/2021
3.5.5 1,658 7/31/2021
3.5.4 1,243 7/29/2021
3.5.3 1,170 7/28/2021
3.5.2 1,058 7/28/2021
3.5.1 1,487 7/22/2021
3.5.0 1,211 7/17/2021
3.4.6 1,146 7/14/2021
3.4.5 1,279 7/12/2021
3.4.4 1,198 7/11/2021
3.4.3 1,218 7/5/2021
3.4.2 1,086 7/3/2021
3.4.1 1,082 7/1/2021
3.4.0 1,384 6/14/2021
3.3.1 733 6/10/2021
3.3.1-beta2 576 5/30/2021
3.3.1-beta1 977 5/28/2021
3.3.0 1,063 5/23/2021
3.2.1 1,249 5/20/2021
3.2.0 1,501 5/4/2021
3.1.14 1,210 4/22/2021
3.1.13 1,162 4/15/2021
3.1.12 1,247 4/10/2021
3.1.11 1,355 4/5/2021
3.1.10 1,247 4/4/2021
3.1.9 1,821 3/28/2021
3.1.8 2,005 3/25/2021
3.1.7 1,010 3/25/2021
3.1.6 1,663 3/16/2021
3.1.5 1,175 3/14/2021
3.1.4 1,149 3/13/2021
3.1.3 1,192 3/11/2021
3.1.2 1,432 3/6/2021
3.1.1 1,228 3/1/2021
3.1.0 1,246 3/1/2021
3.0.7 1,312 2/28/2021
3.0.6 1,059 2/23/2021
3.0.5 1,588 2/22/2021
3.0.4 1,156 2/21/2021
3.0.3 912 2/16/2021
3.0.2 1,284 2/13/2021
3.0.1 1,489 2/11/2021
3.0.0 1,221 2/10/2021
2.2.3 1,010 2/6/2021
2.2.2 1,071 2/5/2021
2.2.1 1,020 1/29/2021
2.2.0 1,007 1/27/2021
2.1.1 1,291 1/21/2021
2.1.0 1,169 1/17/2021
2.0.1 1,113 1/10/2021
2.0.0 1,216 1/10/2021
1.1.2 1,137 1/9/2021
1.1.1 1,296 12/31/2020
1.1.0 1,169 12/27/2020
1.0.1 1,631 12/25/2020
1.0.0 1,012 12/25/2020
1.0.0-beta9 533 12/10/2020
1.0.0-beta8 568 11/26/2020
1.0.0-beta7 523 11/15/2020
1.0.0-beta6 546 11/14/2020
1.0.0-beta5 568 11/8/2020
1.0.0-beta4 385 11/8/2020
1.0.0-beta3 322 10/17/2020
1.0.0-beta2 335 10/6/2020
1.0.0-beta11 522 12/23/2020
1.0.0-beta10 542 12/18/2020
1.0.0-beta1 334 10/6/2020
1.0.0-alpha1 322 9/27/2020

Update dependencies.
           BREAKING: Allow storing async tokens.
           perf: Use pooled backing array for JSON Serialization.
           perf: Initialize reasonable starting buffer size.
           perf: Use ValueTask when possible.