{"id":27344641,"url":"https://github.com/duckstax/actor-zeta","last_synced_at":"2025-04-12T17:20:32.319Z","repository":{"id":37015524,"uuid":"47886502","full_name":"duckstax/actor-zeta","owner":"duckstax","description":"Library that provides an actor style message-passing programming model (in C++).","archived":false,"fork":false,"pushed_at":"2025-04-09T14:30:12.000Z","size":2204,"stargazers_count":65,"open_issues_count":17,"forks_count":9,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-09T15:39:09.486Z","etag":null,"topics":["actor-model","c-plus-plus-11","c-plus-plus-14","c-plus-plus-17","clion","jetbrains","message-passing"],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/duckstax.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-12-12T16:59:57.000Z","updated_at":"2025-04-09T14:27:02.000Z","dependencies_parsed_at":"2024-03-27T20:29:35.089Z","dependency_job_id":"d0fc5ad1-db05-4747-9a77-7684ddceaeb6","html_url":"https://github.com/duckstax/actor-zeta","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/duckstax%2Factor-zeta","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/duckstax%2Factor-zeta/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/duckstax%2Factor-zeta/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/duckstax%2Factor-zeta/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/duckstax","download_url":"https://codeload.github.com/duckstax/actor-zeta/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248602364,"owners_count":21131625,"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":["actor-model","c-plus-plus-11","c-plus-plus-14","c-plus-plus-17","clion","jetbrains","message-passing"],"created_at":"2025-04-12T17:20:27.350Z","updated_at":"2025-04-12T17:20:32.314Z","avatar_url":"https://github.com/duckstax.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n| compiler  | Master | Develop |\n|:---:|:---:|:---:|\n| gcc 4.8.5 - 11 | |[![ubuntu](https://github.com/cyberduckninja/actor-zeta/actions/workflows/ubuntu_gcc.yaml/badge.svg?branch=develop)](https://github.com/cyberduckninja/actor-zeta/actions/workflows/ubuntu_gcc.yaml) |\n|clang 3.9 - 10 | |[![ubuntu](https://github.com/cyberduckninja/actor-zeta/actions/workflows/ubuntu_clang.yaml/badge.svg?branch=develop)](https://github.com/cyberduckninja/actor-zeta/actions/workflows/ubuntu_clang.yaml)|\n\nactor-zeta\n========================\n\nactor-zeta is an open source C++11/14/17 virtual actor model implementation featuring lightweight \u0026 fast and more.\n\n## Example\n\n```C++\n\n#include \u003cactor-zeta.hpp\u003e\n\nusing actor_zeta::basic_async_actor;\n\nclass key_value_storage_t final : public basic_async_actor {\npublic:\n    explicit key_value_storage_t(dummy_supervisor \u0026ref) : basic_async_actor(ref, \"storage\") {\n\n        add_handler(\n                \"init\",\n                \u0026key_value_storage_t::init\n        );\n\n        add_handler(\n                \"search\",\n                \u0026key_value_storage_t::search\n        );\n\n        add_handler(\n                \"add\",\n                \u0026key_value_storage_t::add\n        );\n\n    }\n\n    ~key_value_storage_t() override = default;\n\n    void init() {\n       /// ...\n    }\n\nprivate:\n\n    void search(std::string \u0026key) {\n        /// ...\n    }\n\n    void add(const std::string \u0026key, const std::string \u0026value) {\n        /// ...\n    }\n    \n};\n\n```\n\n### Header-Only\n\nTo use as header-only; that is, to eliminate the requirement to\nlink a program to a static or dynamic library, simply\nplace the following line in exactly one new or existing source\nfile in your project.\n```\n#include \u003cactor-zeta/src.hpp\u003e\n```\n\n## For Users\n\nAdd the corresponding remote to your conan:\n\n```bash\n    conan remote add duckstax http://conan.duckstax.com\n```\n\n### Basic setup\n```bash\n    $ conan install actor-zeta/1.0.0a8@duckstax/stable\n```\n### Project setup\n\nIf you handle multiple dependencies in your project is better to add a *conanfile.txt*\n\n    [requires]\n    actor-zeta/1.0.0a8@duckstax/stable\n\n    [generators]\n    cmake\n\n## Dependencies\n\n* CMake \u003e= 3.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fduckstax%2Factor-zeta","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fduckstax%2Factor-zeta","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fduckstax%2Factor-zeta/lists"}