{"id":19014709,"url":"https://github.com/mxro/async-properties","last_synced_at":"2025-10-29T03:16:53.588Z","repository":{"id":25770678,"uuid":"29208945","full_name":"mxro/async-properties","owner":"mxro","description":"Async Properties is a Java library to store and retrieve properties in an asynchronous manner.","archived":false,"fork":false,"pushed_at":"2023-06-17T05:19:08.000Z","size":120,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-05T03:54:12.824Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mxro.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-01-13T20:16:27.000Z","updated_at":"2023-06-17T05:19:13.000Z","dependencies_parsed_at":"2024-11-08T19:35:02.927Z","dependency_job_id":"658887e9-e7e2-41da-8536-77794980c1da","html_url":"https://github.com/mxro/async-properties","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/mxro/async-properties","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mxro%2Fasync-properties","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mxro%2Fasync-properties/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mxro%2Fasync-properties/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mxro%2Fasync-properties/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mxro","download_url":"https://codeload.github.com/mxro/async-properties/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mxro%2Fasync-properties/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269643829,"owners_count":24452432,"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","status":"online","status_checked_at":"2025-08-09T02:00:10.424Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-11-08T19:32:10.563Z","updated_at":"2025-10-29T03:16:48.539Z","avatar_url":"https://github.com/mxro.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"** MOVED **: This project has moved to [javadelight/delight-async-properties](https://github.com/javadelight/delight-async-properties) and is now part of the [Java Delight Suite](http://javadelight.org).\n\n\n[![Build Status](https://travis-ci.org/mxro/async-properties.svg?branch=master)](https://travis-ci.org/mxro/async-properties)\n\n# Async Properties\n\n[Async Properties](https://github.com/mxro/async-properties) is a Java library to store and retrieve properties in an asynchronous manner.\n\n## Usage\n\n### Storing Properties\n\nProperties are set using the `record(operation)` method. All operations are performed asynchronously. \n\n```java\nPropertyNode props = Properties.create(Properties.defaultFactory());\n\nprops.record(Properties.set(\"key\", \"value\"));\n\nprops.stop().get();\n\n```\n\n### Retrieving Properties\n\nProperties can be retrieved using the `retrieve(key)` method. `retrieve(key)` returns a [Promise](http://modules.appjangle.com/java-promise/latest/apidocs/de/mxro/promise/Promise.html)\n which must be resolved using `.get()`.\n\n```java\nPropertyNode props = Properties.create(Properties.defaultFactory());\n\nprops.record(Properties.set(\"key\", \"value\"));\n\nSystem.out.println(props.retrieve(\"key\").get());\n\nprops.stop().get();\n\n```\n\n### Rendering All Properties\n\nRenders all properties in a human-readable JSON representation.\n\n```java\nPropertyNode props = Properties.create(Properties.defaultFactory());\n\nprops.record(Properties.set(\"key\", \"value\"));\n\nSystem.out.println(props.render().get());\n\nprops.stop().get();\n\n```\n\n### Maven Dependency\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ede.mxro.async.properties\u003c/groupId\u003e\n\t\u003cartifactId\u003easync-properties\u003c/artifactId\u003e\n\t\u003cversion\u003e[latest version]\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nFind latest version [here](http://modules.appjangle.com/async-properties/latest/project-summary.html).\n\nAdd repository if required:\n\n```xml\n\u003crepositories\u003e\n\t\u003crepository\u003e\n\t\t\u003cid\u003eAppjangle Releases\u003c/id\u003e\n\t\t\u003curl\u003ehttp://maven.appjangle.com/appjangle/releases\u003c/url\u003e\n\t\u003c/repository\u003e\n\u003c/repositories\u003e\n```\n\n## Compatibility\n\nThis project is compatible with the following environments:\n\n- Java 1.6+\n- GWT 2.5.0+\n- Android (any)\n- OSGi (any)\n\n\n## Further Resources\n\n- [JavaDocs](http://modules.appjangle.com/async-properties/latest/apidocs/)\n- [Project Reports](http://modules.appjangle.com/async-properties/latest/project-reports.html)\n- [README with TOC](http://documentup.com/mxro/async-properties)\n\n[![Documentation Status](https://readthedocs.org/projects/async-properties/badge/?version=latest)](https://readthedocs.org/projects/async-properties/?badge=latest)\n  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmxro%2Fasync-properties","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmxro%2Fasync-properties","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmxro%2Fasync-properties/lists"}