{"id":26866418,"url":"https://github.com/jauntsdn/rsocket-jvm-interop-examples","last_synced_at":"2026-02-22T23:32:06.974Z","repository":{"id":37428059,"uuid":"430676380","full_name":"jauntsdn/rsocket-jvm-interop-examples","owner":"jauntsdn","description":null,"archived":false,"fork":false,"pushed_at":"2025-12-21T12:17:16.000Z","size":729,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"feature/oss","last_synced_at":"2025-12-23T03:49:24.967Z","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/jauntsdn.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-11-22T11:18:12.000Z","updated_at":"2025-12-21T12:17:20.000Z","dependencies_parsed_at":"2025-03-28T22:25:28.676Z","dependency_job_id":"6cf0707c-7d16-462d-8c68-1beeb5113a2e","html_url":"https://github.com/jauntsdn/rsocket-jvm-interop-examples","commit_stats":null,"previous_names":["jauntsdn/rsocket-jvm-interop-examples"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jauntsdn/rsocket-jvm-interop-examples","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jauntsdn%2Frsocket-jvm-interop-examples","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jauntsdn%2Frsocket-jvm-interop-examples/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jauntsdn%2Frsocket-jvm-interop-examples/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jauntsdn%2Frsocket-jvm-interop-examples/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jauntsdn","download_url":"https://codeload.github.com/jauntsdn/rsocket-jvm-interop-examples/tar.gz/refs/heads/feature/oss","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jauntsdn%2Frsocket-jvm-interop-examples/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29730711,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-22T20:09:16.275Z","status":"ssl_error","status_checked_at":"2026-02-22T20:09:13.750Z","response_time":110,"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":[],"created_at":"2025-03-31T04:54:35.423Z","updated_at":"2026-02-22T23:32:06.927Z","avatar_url":"https://github.com/jauntsdn.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Message-Streams](readme/mstreams.png)\n\n[![Build](https://github.com/jauntsdn/rsocket-jvm-interop-examples/actions/workflows/build-ci.yml/badge.svg)](https://github.com/jauntsdn/rsocket-jvm-interop-examples/actions/workflows/build-ci.yml)\n# Message-Streams (RSocket-JVM) / GRPC interop example\n\nThis example demonstrates how `Message-Streams` services from [jauntsdn/RSocket-JVM](https://github.com/jauntsdn/rsocket-jvm) \ninteroperate with each other over multiple transports (tcp, unix sockets, websockets/http2) \u0026 with GRPC, http/json over http2. It also demonstrates \nhow Message-Streams/RPC services may be decoupled from RSocket-JVM runtime (this includes transports, metrics, load estimators/circuit breakers).\n\n`Message-Streams` is very fast GRPC-like \u0026 GRPC-compatible services on JVM with rich streaming models.\n\nEach service \u0026 its RPC client/server bindings have API of different nature: grpc-stub API(StreamObserver), CompletableFuture, \nor flavor of reactive: smallrye-mutiny, rxjava3, reactor-project.\n\nExample application is comprised of 5 `Message-Streams` services (RSocket-JVM runtimes are stripped on this branch),\nplus GRPC \u0026 http/json clients:    \n\n* [Farmer](https://github.com/jauntsdn/rsocket-jvm-interop-examples/blob/feature/oss/messagestreams-reactor-service/src/main/java/com/jauntsdn/rsocket/trisocket/farm/Main.java) service (Message-Streams-RPC-reactor + TCP transport)\n\n* [Recipes](https://github.com/jauntsdn/rsocket-jvm-interop-examples/blob/feature/oss/messagestreams-futures-service/src/main/java/com/jauntsdn/rsocket/trisocket/recipes/Main.java) service (Message-Streams-RPC-futures + TCP transport)\n\n* [Roundsman](https://github.com/jauntsdn/rsocket-jvm-interop-examples/blob/feature/oss/messagestreams-mutiny-service/src/main/java/com/jauntsdn/rsocket/trisocket/roundsman/Main.java) service (Message-Streams-RPC-mutiny + WEBSOCKET-HTTP2 transport)\n\n* [Chef](https://github.com/jauntsdn/rsocket-jvm-interop-examples/blob/feature/oss/messagestreams-grpc-service/src/main/java/com/jauntsdn/rsocket/trisocket/chef/Main.java) service (Message-Streams-RPC-grpc + UNIX transport)\n \n* [Kitchen](https://github.com/jauntsdn/rsocket-jvm-interop-examples/blob/feature/oss/messagestreams-rxjava-service/src/main/java/com/jauntsdn/rsocket/trisocket/kitchen/Main.java) service (Message-Streams-RPC-rxjava + GRPC transport)\n\n* [Gourmet](https://github.com/jauntsdn/rsocket-jvm-interop-examples/blob/feature/oss/grpc-client/src/main/java/com/jauntsdn/rsocket/trisocket/gourmet/Main.java) client (GRPC-java)\n\n* [Supervisor](https://github.com/jauntsdn/rsocket-jvm-interop-examples/blob/feature/oss/http-client/src/main/java/com/jauntsdn/rsocket/trisocket/supervisor/Main.java) client (http/json)\n\n![services](readme/mstreams-interop-svcs.png \"services\")\n\n### Build\n\n`./gradlew`\n\nRegenerate RPC client/service stubs (linux, windows(x86) only)\n\n`./gradlew clean build -PgenerateProto=true`\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjauntsdn%2Frsocket-jvm-interop-examples","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjauntsdn%2Frsocket-jvm-interop-examples","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjauntsdn%2Frsocket-jvm-interop-examples/lists"}