{"id":15068988,"url":"https://github.com/amayaframework/amaya-events","last_synced_at":"2026-01-28T21:01:33.033Z","repository":{"id":226686038,"uuid":"767526053","full_name":"AmayaFramework/amaya-events","owner":"AmayaFramework","description":"A library that implements the event system.","archived":false,"fork":false,"pushed_at":"2025-06-17T18:45:43.000Z","size":48,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-17T19:44:21.233Z","etag":null,"topics":["async","event","event-system","events","java","java-11","java-17","java-21","system"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AmayaFramework.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}},"created_at":"2024-03-05T13:03:21.000Z","updated_at":"2025-06-17T18:45:46.000Z","dependencies_parsed_at":"2024-03-14T14:30:41.455Z","dependency_job_id":null,"html_url":"https://github.com/AmayaFramework/amaya-events","commit_stats":null,"previous_names":["amayaframework/amaya-events"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/AmayaFramework/amaya-events","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmayaFramework%2Famaya-events","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmayaFramework%2Famaya-events/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmayaFramework%2Famaya-events/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmayaFramework%2Famaya-events/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AmayaFramework","download_url":"https://codeload.github.com/AmayaFramework/amaya-events/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmayaFramework%2Famaya-events/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28851838,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T15:15:36.453Z","status":"ssl_error","status_checked_at":"2026-01-28T15:15:13.020Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["async","event","event-system","events","java","java-11","java-17","java-21","system"],"created_at":"2024-09-25T01:39:57.843Z","updated_at":"2026-01-28T21:01:33.015Z","avatar_url":"https://github.com/AmayaFramework.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# amaya-events [![maven-central](https://img.shields.io/maven-central/v/io.github.amayaframework/amaya-events?color=blue)](https://repo1.maven.org/maven2/io/github/amayaframework/amaya-events/)\n\nA library that implements the event system.\n\n## Getting Started\n\nTo install it, you will need:\n\n* Java 11+\n* Maven/Gradle\n\n### Features\n\n* Universal event descriptor\n* Calling events by name\n* Java concurrent api based event calls\n* Flexible and convenient implementation\n\n## Installing\n\n### Gradle dependency\n\n```Groovy\ndependencies {\n    implementation group: 'io.github.amayaframework', name: 'amaya-events', version: 'LATEST'\n}\n```\n\n### Maven dependency\n\n```\n\u003cdependency\u003e\n    \u003cgroupId\u003eio.github.amayaframework\u003c/groupId\u003e\n    \u003cartifactId\u003eamaya-events\u003c/artifactId\u003e\n    \u003cversion\u003eLATEST\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n## Usage example\n\n```Java\nimport io.github.amayaframework.events.*;\n\nimport java.util.concurrent.ForkJoinPool;\n\npublic class Main {\n    public static void main(String[] args) throws InterruptedException {\n        final var event = Event.of(\"CountEvent\", Integer.class);\n        var factory = new ParallelManagerFactory(ForkJoinPool::commonPool);\n        var manager = factory.create();\n        manager.set(event, count -\u003e System.out.println(\"The count is now \" + count));\n        manager.fireNow(event, 5);\n        manager.stop();\n    }\n}\n```\n\nThis code will output:\n\n```\nThe count is now 5\n```\n\n## Built With\n\n* [Gradle](https://gradle.org) - Dependency management\n* [jfunc](https://github.com/RomanQed/jfunc) - Functional interfaces, utilities\n\n## Authors\n\n* **[RomanQed](https://github.com/RomanQed)** - *Main work*\n\nSee also the list of [contributors](https://github.com/AmayaFramework/amaya-events/contributors)\nwho participated in this project.\n\n## License\n\nThis project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famayaframework%2Famaya-events","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famayaframework%2Famaya-events","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famayaframework%2Famaya-events/lists"}