Topos 0.39.0

dotnet add package Topos --version 0.39.0
                    
NuGet\Install-Package Topos -Version 0.39.0
                    
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="Topos" Version="0.39.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Topos" Version="0.39.0" />
                    
Directory.Packages.props
<PackageReference Include="Topos" />
                    
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 Topos --version 0.39.0
                    
#r "nuget: Topos, 0.39.0"
                    
#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.
#addin nuget:?package=Topos&version=0.39.0
                    
Install Topos as a Cake Addin
#tool nuget:?package=Topos&version=0.39.0
                    
Install Topos as a Cake Tool

Topos

It's something with topics.

Producing messages

Could e.g. be Apache Kafka, where we send a JSON-serialized message:

var producer = Configure
    .Producer(c => c.UseKafka("localhost:9092"))
    .Serialization(s => s.UseNewtonsoftJson())
    .Create();

// keep producer instance for the entire life of your app,
// remembering to dispose it when we shut down
Using(producer);

// send events like this:;
await producer.Send("someevents", new ToposMessage(new SomeEvent("This is just a message")), partitionKey: "customer-004");

Let's go through the different configuration parts:

// Topos configurations start with 'Configure.', no matter what you want to configure
var producer = Configure

    // we configure a producer that uses Kafka, seeding it with a couple of brokers
    .Producer(c => c.UseKafka("kafkahost01:9092", "kafkahost02:9092"))

    // tell Topos to JSON-serialize messages
    .Serialization(s => s.UseNewtonsoftJson())

    // creates the producer
    .Create();

Consuming messages

Let's also use Kafka to consume messages... the configuration is probably not that surprising to you, it's just Configure. and then let the fluent API guide you.

Check this out - here we set up a corresponding consumer that just prints out the contents from the received messages:

var consumer = Configure
    .Consumer("default-group", c => c.UseKafka("kafkahost01:9092", "kafkahost02:9092"))
    .Serialization(s => s.UseNewtonsoftJson())
    .Topics(t => t.Subscribe("someevents"))
    .Positions(p => p.StoreInMongoDb("mongodb://mongohost01/some_database", "Positions"))
    .Handle(async (messages, context, token) =>
    {
        foreach (var message in messages)
        {
            switch (message.Body)
            {
                case SomeEvent someEvent:
                    Console.WriteLine($"Got some event: {someEvent}");
                    break;
            }
        }
    })
    .Start();

// dispose consumer when you want to stop consuming messages
Using(consumer);

Let's go through the configuration again:

// start with 'Configure.'...
var consumer = Configure

    // configure a consumer instance as part of the group 'default-group', and use Kafka
    .Consumer("default-group", c => c.UseKafka("kafkahost01:9092", "kafkahost02:9092"))

    // use JSON
    .Serialization(s => s.UseNewtonsoftJson())

    // subscribe to 'someevents'
    .Topics(t => t.Subscribe("someevents"))

    // store positions in MongoDB
    .Positions(p => p.StoreInMongoDb("mongodb://mongohost01/some_database", "Positions"))

    // handle messages
    .Handle(async (messages, context, token) =>
    {
        foreach (var message in messages)
        {
            switch (message.Body)
            {
                case SomeEvent someEvent:
                    Console.WriteLine($"Got some event: {someEvent}");
                    break;
            }
        }
    })
    .Start();
Product 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.  net9.0 is compatible.  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.  net10.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  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 (11)

Showing the top 5 NuGet packages that depend on Topos:

Package Downloads
Topos.Kafka

Kafka-based broker implementation for Topos.

Topos.NewtonsoftJson

Newtonsoft JSON.NET-based message serializer for Topos.

Topos.Serilog

Serilog-based logger factory implementation for Topos.

DAX.EventProcessing.Serialization

Package Description

Topos.MongoDb

MongoDB-based positions manager for Topos.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.39.0 574 2/14/2025
0.38.0 22,084 11/22/2024
0.37.0 387 10/24/2024
0.36.0 286 10/24/2024
0.35.0 5,161 10/22/2024
0.34.0 298 10/22/2024
0.33.0 1,223 8/14/2024
0.32.0 412 7/2/2024
0.31.0 11,351 6/4/2024
0.30.0 366 5/13/2024
0.29.0 386 3/20/2024
0.28.0 7,569 12/10/2023
0.26.0 439 12/9/2023
0.25.0 2,525 8/1/2023
0.24.0 601 6/20/2023
0.23.0 540 6/20/2023
0.22.0 556 6/20/2023
0.21.0 18,135 5/9/2023
0.20.0 766 4/28/2023
0.18.0 800 4/27/2023
0.17.0 780 4/27/2023
0.16.0 729 4/27/2023
0.15.0 788 4/27/2023
0.14.0 772 4/27/2023
0.13.0 806 4/27/2023
0.12.0 779 4/26/2023
0.11.0 1,192 3/14/2023
0.10.0 1,396 2/9/2023
0.9.0 6,256 9/8/2022
0.8.0 2,416 8/31/2022
0.7.0 2,404 8/31/2022
0.6.0 2,424 8/31/2022
0.5.0 2,484 8/4/2022
0.4.0 2,490 6/26/2022
0.3.0 2,443 6/20/2022
0.2.0 2,770 4/17/2022
0.1.4 2,610 3/17/2022
0.1.3 25,261 1/19/2022
0.1.2 2,627 1/13/2022
0.1.1 1,453 12/16/2021
0.1.0 1,361 12/16/2021
0.0.99 1,334 12/16/2021
0.0.98 2,253 9/28/2021
0.0.97 1,608 9/10/2021
0.0.96 1,593 9/4/2021
0.0.95 2,022 7/6/2021
0.0.94 2,004 3/9/2021
0.0.93 1,450 3/9/2021
0.0.92 1,356 3/8/2021
0.0.91 57,224 2/27/2021
0.0.90 1,399 2/2/2021
0.0.89 1,365 2/1/2021
0.0.88 57,978 11/12/2020
0.0.87 1,524 11/12/2020
0.0.86 1,539 11/10/2020
0.0.85 1,511 11/10/2020
0.0.84 1,920 10/2/2020
0.0.83 1,555 10/1/2020
0.0.82 1,816 9/27/2020
0.0.81 1,840 9/18/2020
0.0.80 1,615 9/11/2020
0.0.79 1,688 9/11/2020
0.0.78 1,642 9/11/2020
0.0.77 1,662 9/11/2020
0.0.76 1,474 9/10/2020
0.0.75 1,534 9/1/2020
0.0.74 1,500 9/1/2020
0.0.73 2,186 8/13/2020
0.0.72 3,605 7/14/2020
0.0.71 1,618 7/14/2020
0.0.69 1,762 5/11/2020
0.0.69-pre 855 3/29/2020
0.0.68-pre 824 3/29/2020
0.0.67-pre 831 3/29/2020
0.0.66-pre 877 3/29/2020
0.0.65-pre 917 3/28/2020
0.0.64-pre 859 3/27/2020
0.0.63 1,621 3/27/2020
0.0.62 1,734 3/27/2020
0.0.61 1,683 3/26/2020
0.0.60 1,681 3/26/2020
0.0.59 1,670 3/26/2020
0.0.58 1,588 3/25/2020
0.0.57 2,142 3/22/2020
0.0.56 1,613 2/25/2020
0.0.55 1,638 1/8/2020
0.0.54 1,635 1/7/2020
0.0.53 1,619 1/7/2020
0.0.52 1,653 12/31/2019
0.0.51 1,635 12/29/2019
0.0.50 1,613 12/29/2019
0.0.49 1,647 12/29/2019
0.0.48 1,710 12/29/2019
0.0.46 1,699 12/23/2019
0.0.45 1,657 12/3/2019
0.0.44 1,586 12/3/2019
0.0.43 1,518 11/8/2019
0.0.42 1,494 10/25/2019
0.0.41 1,530 10/25/2019
0.0.40 1,534 10/24/2019
0.0.39 1,597 10/13/2019
0.0.38 1,511 10/13/2019
0.0.37 1,512 10/12/2019
0.0.36 1,502 10/12/2019
0.0.35 1,580 10/12/2019
0.0.34 1,503 10/12/2019
0.0.33 1,557 10/3/2019
0.0.32 1,572 9/30/2019
0.0.31 1,534 9/30/2019
0.0.30 1,540 9/26/2019
0.0.29 1,499 9/20/2019
0.0.28 1,548 9/20/2019
0.0.27 1,504 6/28/2019
0.0.24 1,578 5/10/2019
0.0.21 1,644 5/7/2019
0.0.20 1,612 5/7/2019
0.0.19 1,624 5/6/2019
0.0.18-beta 802 4/12/2019
0.0.17-beta 812 4/11/2019
0.0.16-beta 822 3/28/2019
0.0.15-beta 855 3/28/2019
0.0.14-beta 744 3/27/2019
0.0.13-beta 783 3/26/2019
0.0.12-beta 806 3/26/2019
0.0.11-beta 731 3/23/2019
0.0.10-beta 715 3/22/2019
0.0.9-beta 779 3/22/2019
0.0.8-beta 759 3/22/2019
0.0.7-beta 753 3/22/2019
0.0.5-beta 759 3/22/2019
0.0.4 1,290 3/21/2019
0.0.3 1,229 3/21/2019
0.0.2-b5 611 3/4/2019
0.0.2-b4 554 3/1/2019
0.0.2-b3 559 3/1/2019
0.0.2-b2 552 3/1/2019
0.0.2-b1 527 3/1/2019
0.0.1 694 3/1/2019