Npgmq 1.4.0
See the version list below for details.
dotnet add package Npgmq --version 1.4.0
NuGet\Install-Package Npgmq -Version 1.4.0
<PackageReference Include="Npgmq" Version="1.4.0" />
paket add Npgmq --version 1.4.0
#r "nuget: Npgmq, 1.4.0"
// Install Npgmq as a Cake Addin #addin nuget:?package=Npgmq&version=1.4.0 // Install Npgmq as a Cake Tool #tool nuget:?package=Npgmq&version=1.4.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.
Using a Connection String
If you pass an Npgsql connection string to the NpgmqClient
constructor, it will use this connection string to create an NpgsqlConnection
object internally, and the connection lifetime will be managed by NpgmqClient.
Using a Connection Object
If you pass an NpgsqlConnection
object to the NpgmqClient
constructor, it will use this connection instead of creating its own.
Product | Versions 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 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. net9.0 was computed. 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. |
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.