Kuestenlogik.Akka.Streams.Surgewave 0.1.1

Prefix Reserved
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Kuestenlogik.Akka.Streams.Surgewave --version 0.1.1
                    
NuGet\Install-Package Kuestenlogik.Akka.Streams.Surgewave -Version 0.1.1
                    
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="Kuestenlogik.Akka.Streams.Surgewave" Version="0.1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Kuestenlogik.Akka.Streams.Surgewave" Version="0.1.1" />
                    
Directory.Packages.props
<PackageReference Include="Kuestenlogik.Akka.Streams.Surgewave" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Kuestenlogik.Akka.Streams.Surgewave --version 0.1.1
                    
#r "nuget: Kuestenlogik.Akka.Streams.Surgewave, 0.1.1"
                    
#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.
#:package Kuestenlogik.Akka.Streams.Surgewave@0.1.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Kuestenlogik.Akka.Streams.Surgewave&version=0.1.1
                    
Install as a Cake Addin
#tool nuget:?package=Kuestenlogik.Akka.Streams.Surgewave&version=0.1.1
                    
Install as a Cake Tool

Akka.Streams.Surgewave

Akka.Streams connector for Surgewave — Sources, Sinks, and Flows for reactive Surgewave topic integration. Analogous to Akka.Streams.Kafka (Alpakka).

NuGet PackageId: Kuestenlogik.Akka.Streams.Surgewave  ·  Namespace: Akka.Streams.Surgewave

The Akka.* prefix on nuget.org is verified-reserved by the Akka.NET team, so this package ships under the Kuestenlogik.* namespace prefix (Petabridge pattern). API surface and namespaces follow the Akka.Streams convention unchanged.

Installation

dotnet add package Kuestenlogik.Akka.Streams.Surgewave

Features

  • PlainSource / CommittableSource — Consumer sources with backpressure and offset commit
  • PlainSink / FlexiFlow — Producer stages with delivery feedback and passthrough support
  • Transactional — End-to-end exactly-once consume-transform-produce pipelines
  • Committer — Batched offset commits with configurable intervals
  • Schema Registry — Typed serialization/deserialization via Surgewave Schema Registry
  • Partitioned Sources — Sub-source per partition for partition-local processing

Quick Start

var control = SurgewaveConsumer
    .CommittableSource(consumerSettings, Subscriptions.Topics("orders"))
    .SelectAsync(10, async msg =>
    {
        await ProcessOrder(msg.Record.Key, msg.Record.Value);
        return msg.CommittableOffset;
    })
    .ToMaterialized(
        Committer.Sink(CommitterSettings.Create(system)),
        DrainingControl<Done>.Create)
    .Run(materializer);

License

Apache-2.0

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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