{"id":20191821,"url":"https://github.com/danielcrenna/reactive-pipes","last_synced_at":"2025-04-10T09:52:41.466Z","repository":{"id":65414088,"uuid":"60121082","full_name":"danielcrenna/reactive-pipes","owner":"danielcrenna","description":"A thin library around Reactive Extensions to simplify writing evented applications in C#.","archived":false,"fork":false,"pushed_at":"2020-07-16T04:16:25.000Z","size":1479,"stargazers_count":14,"open_issues_count":1,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-24T08:47:46.888Z","etag":null,"topics":["csharp","distributed-systems","message-bus","reactive-extension","reactive-programming"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/danielcrenna.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-05-31T20:28:01.000Z","updated_at":"2024-04-24T20:15:44.000Z","dependencies_parsed_at":"2023-01-23T10:55:08.278Z","dependency_job_id":null,"html_url":"https://github.com/danielcrenna/reactive-pipes","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielcrenna%2Freactive-pipes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielcrenna%2Freactive-pipes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielcrenna%2Freactive-pipes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielcrenna%2Freactive-pipes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/danielcrenna","download_url":"https://codeload.github.com/danielcrenna/reactive-pipes/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247785944,"owners_count":20995644,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csharp","distributed-systems","message-bus","reactive-extension","reactive-programming"],"created_at":"2024-11-14T03:53:09.122Z","updated_at":"2025-04-10T09:52:41.437Z","avatar_url":"https://github.com/danielcrenna.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fdanielcrenna%2Freactive-pipes.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fdanielcrenna%2Freactive-pipes?ref=badge_shield)\n\nreactive.pipes\n======\n\n```powershell\n\u003e Install-Package reactive.pipes\n```\n\nReactive Pipes is a lightweight eventing middleware library for distributed applications.\n \nIt gives you high performing, non-blocking and parallelized eventing. You build other components out of it.\n\n### Why would I use this?\n- You're building a real-time system and want to notify your hub as things occur\n- You want to synchronize activity between various application components at the event level\n- You want to use the \"[shared nothing](http://en.wikipedia.org/wiki/Shared_nothing_architecture)\" integration pattern\n- You want to transform events into one or more materialized views for queries, etc. (event sourcing)\n- You want to produce version-safe events on a schedule, without requiring additional infrastructure\n\n### Usage\n--------\nThis library provides a foundation for distributed middleware on three levels: pipes, protocols,\nand event dispatch. It provides most of what you need to handle concurrency and synchronization\nof arbitrary producers and consumers. Here is a simple example using two built-in components.\n\n```csharp\nvar block = new ManualResetEvent(false);\n\nvar producer = new ObservingProducer\u003cint\u003e();\nvar consumer = new DelegatingConsumer\u003cint\u003e(i =\u003e Console.WriteLine(i));\n\nproducer.Produces(Observable.Range(1, 10000), onCompleted: () =\u003e block.Set());\nproducer.Attach(consumer);\nproducer.Start();\n\nblock.WaitOne();\n```\n\n#### Addendum\n\n- Custom task schedulers in the `Schedulers` folder are provided for [convenience](http://blogs.msdn.com/b/pfxteam/archive/2010/04/04/9990342.aspx) and  Copyright (c) Microsoft Corporation.\n- This is a streamlined version of [copper](https://github.com/danielcrenna/vault/tree/master/copper), a library I wrote in 2012.\n- This library also subsumes the [linger](https://github.com/danielcrenna/vault/tree/master/linger) library for delayed message production on a schedule.\n\n## License\n[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fdanielcrenna%2Freactive-pipes.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fdanielcrenna%2Freactive-pipes?ref=badge_large)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanielcrenna%2Freactive-pipes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdanielcrenna%2Freactive-pipes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanielcrenna%2Freactive-pipes/lists"}