{"id":15138521,"url":"https://github.com/vert-x3/vertx-virtual-threads-incubator","last_synced_at":"2025-09-04T03:34:43.481Z","repository":{"id":43297115,"uuid":"511217811","full_name":"vert-x3/vertx-virtual-threads-incubator","owner":"vert-x3","description":"Vert.x virtual threads incubator","archived":false,"fork":false,"pushed_at":"2023-05-30T07:51:47.000Z","size":133,"stargazers_count":117,"open_issues_count":6,"forks_count":9,"subscribers_count":32,"default_branch":"main","last_synced_at":"2025-01-30T19:07:42.451Z","etag":null,"topics":["async","java","loom","reactive","vertx","virtualthreads"],"latest_commit_sha":null,"homepage":"","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/vert-x3.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":"2022-07-06T16:43:19.000Z","updated_at":"2025-01-24T10:21:41.000Z","dependencies_parsed_at":"2024-09-16T12:35:17.565Z","dependency_job_id":"432bfbdf-e4ae-4e0a-9c83-7ab4b8024c3e","html_url":"https://github.com/vert-x3/vertx-virtual-threads-incubator","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vert-x3%2Fvertx-virtual-threads-incubator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vert-x3%2Fvertx-virtual-threads-incubator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vert-x3%2Fvertx-virtual-threads-incubator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vert-x3%2Fvertx-virtual-threads-incubator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vert-x3","download_url":"https://codeload.github.com/vert-x3/vertx-virtual-threads-incubator/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237843772,"owners_count":19375201,"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":["async","java","loom","reactive","vertx","virtualthreads"],"created_at":"2024-09-26T07:40:38.380Z","updated_at":"2025-02-08T17:31:01.690Z","avatar_url":"https://github.com/vert-x3.png","language":"Java","funding_links":[],"categories":["并发编程"],"sub_categories":["语音合成"],"readme":"# Vert.x Virtual Threads Incubator\n\n[![Build Status](https://github.com/vert-x3/vertx-virtual-threads-incubator/workflows/CI/badge.svg?branch=main)](https://github.com/vert-x3/vertx-virtual-threads-incubator/actions?query=workflow%3ACI)\n\nIncubator for virtual threads based prototypes.\n\n## Prerequisites\n\n- [Vert.x 4.3.7](https://vertx.io/docs/4.3.7)\n- Java 19 using preview feature\n  - [OpenJDK 19](https://jdk.java.net/19/)\n  - [Maven](https://stackoverflow.com/questions/52232681/compile-and-execute-a-jdk-preview-feature-with-maven)\n  - [Intellij](https://foojay.io/today/how-to-run-project-loom-from-intellij-idea/)\n\n## Projects\n\n- [Async/await incubator](vertx-async-await-incubator)\n- [Execute blocking incubator](vertx-execute-blocking-incubator)\n- Synchronous Vert.x incubator\n  - [Core](vertx-core-sync-incubator)\n  - [Web](vertx-web-sync-incubator)\n- [Examples](examples)\n\n## Usage\n\n### enable preview flag must be enabled\n\n```xml\n\u003cbuild\u003e\n  \u003cpluginManagement\u003e\n    \u003cplugins\u003e\n      \u003cplugin\u003e\n        \u003cgroupId\u003eorg.apache.maven.plugins\u003c/groupId\u003e\n        \u003cartifactId\u003emaven-compiler-plugin\u003c/artifactId\u003e\n        \u003cconfiguration\u003e\n          \u003crelease\u003e19\u003c/release\u003e\n          \u003ccompilerArgs\u003e--enable-preview\u003c/compilerArgs\u003e\n        \u003c/configuration\u003e\n      \u003c/plugin\u003e\n      \u003cplugin\u003e\n        \u003cgroupId\u003eorg.apache.maven.plugins\u003c/groupId\u003e\n        \u003cartifactId\u003emaven-surefire-plugin\u003c/artifactId\u003e\n        \u003cconfiguration\u003e\n          \u003cargLine\u003e--enable-preview\u003c/argLine\u003e\n        \u003c/configuration\u003e\n      \u003c/plugin\u003e\n    \u003c/plugins\u003e\n  \u003c/pluginManagement\u003e\n\u003c/build\u003e\n```\n\n### snapshots are available at s01.oss.sonatype.org\n\n```xml\n  \u003crepositories\u003e\n  \u003crepository\u003e\n    \u003cid\u003evertx-snapshots-repository\u003c/id\u003e\n    \u003cname\u003eVert.x Snapshots Repository\u003c/name\u003e\n    \u003curl\u003ehttps://s01.oss.sonatype.org/content/repositories/snapshots/\u003c/url\u003e\n    \u003creleases\u003e\n      \u003cenabled\u003efalse\u003c/enabled\u003e\n    \u003c/releases\u003e\n    \u003csnapshots\u003e\n      \u003cenabled\u003etrue\u003c/enabled\u003e\n    \u003c/snapshots\u003e\n  \u003c/repository\u003e\n\u003c/repositories\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvert-x3%2Fvertx-virtual-threads-incubator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvert-x3%2Fvertx-virtual-threads-incubator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvert-x3%2Fvertx-virtual-threads-incubator/lists"}