{"id":13480677,"url":"https://github.com/dominionenterprises/mongo-queue-csharp","last_synced_at":"2025-03-27T11:30:49.995Z","repository":{"id":147310365,"uuid":"114138909","full_name":"dominionenterprises/mongo-queue-csharp","owner":"dominionenterprises","description":"C# message queue using MongoDB as a backend","archived":false,"fork":true,"pushed_at":"2015-10-14T16:20:03.000Z","size":1538,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-10-30T14:42:24.695Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"traderinteractive/mongo-queue-csharp","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dominionenterprises.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":"2017-12-13T15:43:54.000Z","updated_at":"2023-08-24T07:07:44.000Z","dependencies_parsed_at":"2023-04-10T02:25:59.957Z","dependency_job_id":null,"html_url":"https://github.com/dominionenterprises/mongo-queue-csharp","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dominionenterprises%2Fmongo-queue-csharp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dominionenterprises%2Fmongo-queue-csharp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dominionenterprises%2Fmongo-queue-csharp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dominionenterprises%2Fmongo-queue-csharp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dominionenterprises","download_url":"https://codeload.github.com/dominionenterprises/mongo-queue-csharp/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245835921,"owners_count":20680292,"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":[],"created_at":"2024-07-31T17:00:43.517Z","updated_at":"2025-03-27T11:30:49.551Z","avatar_url":"https://github.com/dominionenterprises.png","language":"C#","funding_links":[],"categories":["Libraries"],"sub_categories":["C#/.NET ###"],"readme":"#mongo-queue-csharp\n[![Build Status](https://travis-ci.org/dominionenterprises/mongo-queue-csharp.png)](https://travis-ci.org/dominionenterprises/mongo-queue-csharp)\n\nC# message queue using MongoDB as a backend.\nAdheres to the 1.0.0 [specification](https://github.com/dominionenterprises/mongo-queue-specification).\n\n##Features\n\n * Message selection and/or count via MongoDB query\n * Distributes across machines via MongoDB\n * Multi language support through the [specification](https://github.com/dominionenterprises/mongo-queue-specification)\n * Message priority\n * Delayed messages\n * Running message timeout and redeliver\n * Atomic acknowledge and send together\n * Easy index creation based only on payload\n\n##Simplest use\n\n```csharp\nusing System;\nusing MongoDB.Bson;\nusing MongoDB.Driver;\nusing DominionEnterprises.Mongo;\n\nvar queue = new Queue(\"mongodb://localhost\", \"queues\", \"queue\");\nqueue.Send(new BsonDocument());\nvar message = queue.Get(new QueryDocument(), TimeSpan.FromMinutes(1));\nqueue.Ack(message);\n```\n\n##Build\n\nFor linux make sure [Mono](https://github.com/mono/mono) which comes with [xbuild](http://www.mono-project.com/Microsoft.Build) is installed.\nFor windows make sure [.NET SDK](http://www.microsoft.com/en-us/download/details.aspx?id=8279) which comes with\n[MSBuild](http://msdn.microsoft.com/en-us/library/dd393574.aspx) is installed.\nMake sure you are in the repository root.\n\nFor linux run:\n\n```bash\nxbuild DominionEnterprises.Mongo/DominionEnterprises.Mongo.csproj\n```\n\nFor windows run:\n\n```dos\nC:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\MSBuild.exe DominionEnterprises.Mongo\\DominionEnterprises.Mongo.csproj\n```\n\nand use the resulting `DominionEnterprises.Mongo/bin/Debug/DominionEnterprises.Mongo.dll` as a reference in your project.\n\n##Documentation\n\nFound in the [source](DominionEnterprises.Mongo/Queue.cs) itself, take a look!\n\n##Contact\n\nDevelopers may be contacted at:\n\n * [Pull Requests](https://github.com/dominionenterprises/mongo-queue-php/pulls)\n * [Issues](https://github.com/dominionenterprises/mongo-queue-php/issues)\n\n##Project build\n\nInstall and start [mongodb](http://www.mongodb.org).\nFor linux make sure [Mono](https://github.com/mono/mono) which comes with [xbuild](http://www.mono-project.com/Microsoft.Build) is installed.\nFor windows make sure [.NET SDK](http://www.microsoft.com/en-us/download/details.aspx?id=8279) which comes with\n[MSBuild](http://msdn.microsoft.com/en-us/library/dd393574.aspx) is installed.\nFor both make sure [nunit-console](http://www.nunit.org/index.php?p=nunit-console\u0026r=2.2.10) is installed.\nMake sure you are in the repository root.\n\nFor linux run:\n\n```bash\nsh build.sh\n```\n\nFor windows run:\n\n```dos\nbuild.bat\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdominionenterprises%2Fmongo-queue-csharp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdominionenterprises%2Fmongo-queue-csharp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdominionenterprises%2Fmongo-queue-csharp/lists"}