Npgmq 1.3.0
dotnet add package Npgmq --version 1.3.0
NuGet\Install-Package Npgmq -Version 1.3.0
<PackageReference Include="Npgmq" Version="1.3.0" />
paket add Npgmq --version 1.3.0
#r "nuget: Npgmq, 1.3.0"
// Install Npgmq as a Cake Addin #addin nuget:?package=Npgmq&version=1.3.0 // Install Npgmq as a Cake Tool #tool nuget:?package=Npgmq&version=1.3.0
Npgmq
A .NET client for Postgres Message Queue (PGMQ).
Compatibility
- pgmq >= 0.31.0
Installation
To install the package via Nuget, run the following command:
dotnet add package Npgmq
Usage
Here is an example that uses Npgmq to create a queue and then send/read/archive a message:
using Npgmq;
var npgmq = new NpgmqClient("<YOUR CONNECTION STRING HERE>");
await npgmq.InitAsync();
await npgmq.CreateQueueAsync("my_queue");
var msgId = await npgmq.SendAsync("my_queue", new MyMessageType
{
Foo = "Test",
Bar = 123
});
Console.WriteLine($"Sent message with id {msgId}");
var msg = await npgmq.ReadAsync<MyMessageType>("my_queue");
if (msg != null)
{
Console.WriteLine($"Read message with id {msg.MsgId}: Foo = {msg.Message?.Foo}, Bar = {msg.Message?.Bar}");
await npgmq.ArchiveAsync("my_queue", msg.MsgId);
}
This example assumes you have defined a class called MyMessageType
with the structure something like:
public class MyMessageType
{
public string Foo { get; set; } = null!;
public int Bar { get; set; }
}
You can send and read messages as JSON strings, like this:
var msgId = await npgmq.SendAsync("my_queue", "{\"foo\":\"Test\",\"bar\":123}");
Console.WriteLine($"Sent message with id {msgId}");
var msg = await npgmq.ReadAsync<string>("my_queue");
if (msg != null)
{
Console.WriteLine($"Read message with id {msg.MsgId}: {msg.Message}");
await npgmq.ArchiveAsync("my_queue", msg.MsgId);
}
You can pass your own NpgsqlConnection
to the NpgmqClient
constructor, like this:
using var myConnection = new NpgsqlConnection("<YOUR CONNECTION STRING HERE>");
var npgmq = new NpgmqClient(myConnection);
Database Connection
Npgmq uses Npgsql internally to connect to the database.
The connection string passed to the NpgmqClient
constructor should be an Npgsql connection string.
Product | Versions 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 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. |
.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. |
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 |
---|---|---|
1.3.0 | 357 | 8/8/2024 |