Genesys.Client.Notifications 6.1.3

dotnet add package Genesys.Client.Notifications --version 6.1.3
NuGet\Install-Package Genesys.Client.Notifications -Version 6.1.3
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="Genesys.Client.Notifications" Version="6.1.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Genesys.Client.Notifications --version 6.1.3
#r "nuget: Genesys.Client.Notifications, 6.1.3"
#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 Genesys.Client.Notifications as a Cake Addin
#addin nuget:?package=Genesys.Client.Notifications&version=6.1.3

// Install Genesys.Client.Notifications as a Cake Tool
#tool nuget:?package=Genesys.Client.Notifications&version=6.1.3

You can query asynchronous Genesys Cloud event streams using LINQ operators. Thus you can filter, project, aggregate, compose and perform time-based operations on multiple events easily by using these standard LINQ operators.

C# .NET Standard 2.0 lightweight implementation of the client Genesys Notifications websocket API with default 24 hours reconnection and handling socket closing notification.

  • Multiple channels if more than 1000 topics.
  • Serialization based on System.Text.Json.
  • Logging functionality based on Microsoft.Extensions.Logging.
  • User friendly with reactive model programming.
using Genesys.Client.Notifications;
static async Task Main(string[] args)
{            
    using (var topics = new GenesysTopics(genesysConfig, logger))
    {
        using (var notifications = await topics
            .Add<QueueConversationEmailEventTopicEmailConversation>("v2.routing.queues.{id}.conversations.emails", pcIds.Queues)
            .Add<PresenceEventUserPresence>("v2.users.{id}.presence", pcIds.Users)
            .CreateAsync())
        {
            notifications.Streams.Domain
                .OfType<QueueConversationEmailEventTopicEmailConversation>()
                .Subscribe(e => Console.WriteLine("{0} {1}", e.Id, e.Participants.Count));
            notifications.Streams.Domain
                .OfType<PresenceEventUserPresence>()
                .Subscribe(p => Console.WriteLine("Presence {0}", p?.PresenceDefinition?.SystemPresence));
            notifications.Streams.Domain
                .Subscribe(obj => Console.WriteLine(obj.ToString()));
            notifications.Streams.Pong
                .Subscribe(_ => Console.WriteLine("Pong"));
            notifications.Streams.Heartbeats
                .Subscribe(_ => Console.WriteLine("Heart beat"));
            notifications.Streams.SocketClosing
                .Subscribe(_ => Console.WriteLine("Socket closing"));
            notifications.Ping();
            Console.ReadLine();
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.1.3 191 2/22/2024
6.1.2 344 5/6/2023
6.1.1 132 5/5/2023
6.1.0 155 5/2/2023
6.0.3 595 4/22/2022
6.0.2 416 2/8/2022
6.0.1 399 2/7/2022
6.0.0 411 2/3/2022
1.0.2 435 3/31/2021
1.0.1 1,969 10/6/2020
1.0.0 589 10/6/2020

- Implemented .NET 6
- Updated dependences