https://github.com/jesty/rsocket-kotlin-demo
A simple demo about RSocket with Spring Boot, Kotlin and Coroutines
https://github.com/jesty/rsocket-kotlin-demo
coroutines kotlin rsocket spring-boot
Last synced: 2 months ago
JSON representation
A simple demo about RSocket with Spring Boot, Kotlin and Coroutines
- Host: GitHub
- URL: https://github.com/jesty/rsocket-kotlin-demo
- Owner: jesty
- Created: 2019-09-25T13:30:30.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-23T07:27:48.000Z (over 5 years ago)
- Last Synced: 2025-01-25T20:41:30.124Z (4 months ago)
- Topics: coroutines, kotlin, rsocket, spring-boot
- Language: JavaScript
- Homepage:
- Size: 120 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RSocket Kotlin Demo
This example includes two application developed to show how to use RSocket with Spring Boot, Kotlin and Coroutines:
* [rsocket-kotlin-demo-web](/rsocket-kotlin-demo-web): A Spring Boot application that exposes two RSocket endpoints using the request/stream (finite stream of many) and the channel (bi-directional streams) interaction style.
* [rsocket-kotlin-demo-channel-client](/rsocket-kotlin-demo-channel-client): a Kotlin client that connect to the endpoints exposed in rsocket-kotlin-demo-web example.To develop this example I used:
* Kotlin 1.3.50
* Kotlin coroutine 1.3.0
* RSocket Kotlin 0.9.8
* Spring Boot 2.2.0 M6### Reference Documentation
For further reference, please consider the following sections:* [Official Apache Maven documentation](https://maven.apache.org/guides/index.html)
* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/docs/2.2.0.M6/maven-plugin/)
* [Coroutines section of the Spring Framework Documentation](https://docs.spring.io/spring/docs/5.2.0.RC2/spring-framework-reference/languages.html#coroutines)
* [Spring Boot RSocket](https://docs.spring.io/spring-boot/docs/2.2.0.M6/reference/htmlsingle/#boot-features-rsocket)