https://github.com/rsocket/rsocket
RSocket Protocol Definition
https://github.com/rsocket/rsocket
Last synced: 2 months ago
JSON representation
RSocket Protocol Definition
- Host: GitHub
- URL: https://github.com/rsocket/rsocket
- Owner: rsocket
- License: apache-2.0
- Created: 2015-07-22T19:29:21.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2023-05-02T15:26:05.000Z (about 2 years ago)
- Last Synced: 2025-01-30T16:20:23.716Z (4 months ago)
- Homepage: http://rsocket.io
- Size: 436 KB
- Stars: 1,852
- Watchers: 85
- Forks: 173
- Open Issues: 40
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# RSocket Protocol
RSocket is an application protocol providing [Reactive Streams](http://www.reactive-streams.org) semantics over an asynchronous, binary boundary.
It enables the following symmetric interaction models via async message passing over a single connection:
- request/response (stream of 1)
- request/stream (finite/infinite stream of many)
- fire-and-forget (no response)
- channel (bi-directional streams)It also supports connection resumption to allow resuming long-lived streams across different transport connections. This is particularly useful for mobile<->server communication when network connections drop, switch, and reconnect frequently.
Artifacts include:
- [RSocket Protocol](Protocol.md)
- Protocol Extensions
- [Well-known MIME Types](Extensions/WellKnownMimeTypes.md)
- [Stream Data MIME Types Definition](Extensions/PerStreamDataMimeTypesDefinition.md)
- [Composite Metadata](Extensions/CompositeMetadata.md)
- [Routing](Extensions/Routing.md)
- [Tracing (Zipkin)](Extensions/Tracing-Zipkin.md)
- [Authentication](Extensions/Security/Authentication.md)
- [Motivation for creating this protocol](Motivations.md)
- [Frequently Asked Questions](FAQ.md)More information and links to various implementations can be found at http://rsocket.io
## Bugs and Feedback
For bugs, questions and discussions please use the [Github Issues](https://github.com/rsocket/rsocket/issues).
## LICENSE
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License atUnless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.