Remora.Discord.Gateway 8.1.5

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
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
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="8.1.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Remora.Discord.Gateway --version 8.1.5
#r "nuget: Remora.Discord.Gateway, 8.1.5"
#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=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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
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.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

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

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
12.0.1 8,315 2/5/2024
12.0.0 24,191 11/14/2023
11.1.0 29,507 7/24/2023
11.0.7 19,013 5/11/2023
11.0.6 2,618 3/20/2023
11.0.5 3,244 1/19/2023
11.0.4 2,633 1/10/2023
11.0.3 3,019 12/28/2022
11.0.2 5,485 12/10/2022
11.0.1 3,316 10/30/2022
11.0.0 19,736 9/2/2022
10.1.7 3,437 8/19/2022
10.1.6 3,297 7/28/2022
10.1.5 3,171 7/26/2022
10.1.4 2,998 7/26/2022
10.1.3 6,875 6/29/2022
10.1.2 3,044 6/27/2022
10.1.1 3,300 6/23/2022
10.1.0 3,978 6/20/2022
10.0.0 3,054 6/19/2022
9.0.0 3,088 6/18/2022
8.1.5 3,125 6/14/2022
8.1.4 3,109 6/8/2022
8.1.3 3,106 6/3/2022
8.1.2 3,081 5/25/2022
8.1.1 3,078 5/23/2022
8.1.0 3,281 5/15/2022
8.0.6 3,147 5/10/2022
8.0.5 5,340 5/3/2022
8.0.4 6,322 4/25/2022
8.0.3 3,786 4/18/2022
8.0.2 2,749 4/2/2022
8.0.1 4,822 4/2/2022
8.0.0 3,324 3/21/2022
7.2.0 3,125 3/17/2022
7.1.0 2,814 3/15/2022
7.0.1 4,234 2/20/2022
7.0.0 2,875 2/19/2022
7.0.0-rc1 1,045 2/14/2022
6.2.10 2,936 2/14/2022
6.2.9 3,137 1/27/2022
6.2.7 4,970 1/11/2022
6.2.6 35,331 1/2/2022
6.2.5 2,925 12/23/2021
6.2.4 1,290 12/21/2021
6.2.3 1,517 12/16/2021
6.2.2 1,381 12/11/2021
6.2.1 1,555 12/5/2021
6.2.0 3,161 11/26/2021
6.1.0 7,089 11/24/2021
6.0.0 2,405 11/20/2021
5.0.4 2,100 11/9/2021
5.0.3 1,863 11/6/2021
5.0.2 2,165 10/30/2021
5.0.1 1,567 10/28/2021
5.0.0 3,770 10/15/2021
4.0.15 2,164 10/7/2021
4.0.13 1,701 10/3/2021
4.0.12 1,522 10/2/2021
4.0.11 1,474 9/30/2021
4.0.10 2,059 9/26/2021
4.0.9 1,495 9/24/2021
4.0.8 1,548 9/23/2021
4.0.7 1,543 9/16/2021
4.0.6 1,600 9/15/2021
4.0.5 1,674 9/8/2021
4.0.4 2,870 9/4/2021
4.0.3 3,203 8/21/2021
4.0.2 1,720 8/18/2021
4.0.1 2,599 8/12/2021
4.0.0 1,364 8/11/2021
3.5.8 1,880 8/11/2021
3.5.7 1,757 8/2/2021
3.5.6 1,980 8/2/2021
3.5.5 2,048 7/31/2021
3.5.4 1,616 7/29/2021
3.5.3 1,525 7/28/2021
3.5.2 1,449 7/28/2021
3.5.1 1,901 7/22/2021
3.5.0 1,590 7/17/2021
3.4.6 1,539 7/14/2021
3.4.5 1,663 7/12/2021
3.4.4 1,563 7/11/2021
3.4.3 1,581 7/5/2021
3.4.2 1,440 7/3/2021
3.4.1 1,449 7/1/2021
3.4.0 1,756 6/14/2021
3.3.1 790 6/10/2021
3.3.1-beta2 966 5/30/2021
3.3.1-beta1 1,375 5/28/2021
3.3.0 1,438 5/23/2021
3.2.1 1,615 5/20/2021
3.2.0 1,908 5/4/2021
3.1.14 1,583 4/22/2021
3.1.13 1,555 4/15/2021
3.1.12 1,599 4/10/2021
3.1.11 1,723 4/5/2021
3.1.10 1,643 4/4/2021
3.1.9 2,226 3/28/2021
3.1.8 2,446 3/25/2021
3.1.7 1,372 3/25/2021
3.1.6 2,073 3/16/2021
3.1.5 1,537 3/14/2021
3.1.4 1,537 3/13/2021
3.1.3 1,535 3/11/2021
3.1.2 1,828 3/6/2021
3.1.1 1,631 3/1/2021
3.1.0 1,597 3/1/2021
3.0.7 1,675 2/28/2021
3.0.6 1,428 2/23/2021
3.0.5 1,968 2/22/2021
3.0.4 1,543 2/21/2021
3.0.3 1,254 2/16/2021
3.0.2 1,663 2/13/2021
3.0.1 1,845 2/11/2021
3.0.0 1,572 2/10/2021
2.2.3 1,395 2/6/2021
2.2.2 1,449 2/5/2021
2.2.1 1,383 1/29/2021
2.2.0 1,348 1/27/2021
2.1.1 1,667 1/21/2021
2.1.0 1,532 1/17/2021
2.0.1 1,460 1/10/2021
2.0.0 1,578 1/10/2021
1.1.2 1,526 1/9/2021
1.1.1 1,657 12/31/2020
1.1.0 1,530 12/27/2020
1.0.1 2,036 12/25/2020
1.0.0 1,358 12/25/2020
1.0.0-beta9 931 12/10/2020
1.0.0-beta8 923 11/26/2020
1.0.0-beta7 886 11/15/2020
1.0.0-beta6 874 11/14/2020
1.0.0-beta5 938 11/8/2020
1.0.0-beta4 417 11/8/2020
1.0.0-beta3 364 10/17/2020
1.0.0-beta2 368 10/6/2020
1.0.0-beta11 844 12/23/2020
1.0.0-beta10 900 12/18/2020
1.0.0-beta1 366 10/6/2020
1.0.0-alpha1 351 9/27/2020

Update dependencies.