{"id":17046490,"url":"https://github.com/tkellogg/objectflow","last_synced_at":"2025-04-12T15:31:08.015Z","repository":{"id":138884291,"uuid":"1441486","full_name":"tkellogg/objectflow","owner":"tkellogg","description":"Lightweight workflows in .NET for busy developers","archived":false,"fork":false,"pushed_at":"2011-09-12T14:20:30.000Z","size":2168,"stargazers_count":64,"open_issues_count":3,"forks_count":29,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-03-26T10:04:37.771Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://github.com/tkellogg/objectflow","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tkellogg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2011-03-04T23:19:25.000Z","updated_at":"2024-09-21T14:56:38.000Z","dependencies_parsed_at":"2023-03-12T07:46:15.383Z","dependency_job_id":null,"html_url":"https://github.com/tkellogg/objectflow","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkellogg%2Fobjectflow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkellogg%2Fobjectflow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkellogg%2Fobjectflow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkellogg%2Fobjectflow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tkellogg","download_url":"https://codeload.github.com/tkellogg/objectflow/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248589406,"owners_count":21129604,"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-10-14T09:46:28.017Z","updated_at":"2025-04-12T15:31:07.210Z","avatar_url":"https://github.com/tkellogg.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"Objectflow: Workflows for busy developers\n=================================\n\nObjectflow is a framework for declaratively creating workflows in C# with a fluent syntax. Objectflow allows you to consolidate your business logic in the usual places (the model) so the workflow only has to focus on how those pieces fit together. \n\n\t// Define a workflow\n\tvar workflow = new StatefulWorflow\u003cSiteVisit\u003e()\n\t\t// Configure security\n\t\t.Configure(config =\u003e config.Security.AsStrict.UsingMethod(() =\u003e _factory.GetAllowedTransitions())\n\n\t\t// Declare a starting point\n\t\t.Yield(\"Scheduled\")\n\n\t\t.Do(x =\u003e x.Open())\n\t\t.Yield(\"In Progress\")\n\n\t\t.Unless(x =\u003e x.IsReadyToBeClosed()).Fail(\"Site visit was not ready to be closed\")\n\t\t.Do(x =\u003e x.Close());\n\nObjectflow provides several services that can optionally be plugged in; including security, persistence, error handling, and UI integration. Each workflow is built inside plain C# classes, making them completely compatible with dependency injection frameworks (unlike Workflow Foundation).\n\nWe also provide other facilities for interacting with workflows to provide persistance and security frameworks.\nSee the [Quickstart guide](https://github.com/tkellogg/objectflow/wiki/Home) for more information.\n\nInstallation\n--------------------------\n\nObjectflow is available via NuGet under the code `StatefulObjectflow`. (http://www.nuget.org/List/Packages/StatefulObjectflow)\n\n\nContributing\n--------------------------\n\nIf you would like to suggest a feature or report a bug, open an issue. If you want to contribute code, fork the repository, make changes, and send a pull request through github.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftkellogg%2Fobjectflow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftkellogg%2Fobjectflow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftkellogg%2Fobjectflow/lists"}