Skip to content

Instantly share code, notes, and snippets.

View CanerPatir's full-sized avatar
🚀

Caner Patır CanerPatir

🚀
View GitHub Profile
@CanerPatir
CanerPatir / A lightweight message bus using TPL DataFlow
Last active July 26, 2023 08:02 — forked from benfoster/gist:4416655
A lightweight message bus using TPL DataFlow
using System;
using System.Collections.Concurrent;
using System.Threading;
using System.Threading.Tasks;
using System.Threading.Tasks.Dataflow;
namespace TDFDemo
{
class Program
{