https://github.com/jetlang/remoting
Jetlang Remoting - asynchronous distributed messaging
https://github.com/jetlang/remoting
asynchronous embeddable http-server java jetlang websocket-client websocket-server websockets
Last synced: about 2 months ago
JSON representation
Jetlang Remoting - asynchronous distributed messaging
- Host: GitHub
- URL: https://github.com/jetlang/remoting
- Owner: jetlang
- Created: 2015-05-22T19:07:43.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-10-18T14:58:39.000Z (over 2 years ago)
- Last Synced: 2025-08-13T05:22:10.364Z (7 months ago)
- Topics: asynchronous, embeddable, http-server, java, jetlang, websocket-client, websocket-server, websockets
- Language: Java
- Homepage:
- Size: 779 KB
- Stars: 31
- Watchers: 7
- Forks: 11
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Jetlang Remoting project provides apis for connecting distributed systems. Jetlang provides a language agnostic wire level protocol and threading model for asynchronous distributed messaging.
The library also contains client and server websocket implementations.
The latest version is available in the maven repository.
https://repo1.maven.org/maven2/org/jetlang/jetlang.remoting/
#Dependencies
* JDK 8
* Jetlang Core - https://github.com/jetlang/core
#WebSocket Features
* Client and Server implementations
* The jetlang core library is the only dependency
* Websocket connections can subscribe and schedule jetlang events
* Low latency
* Minimal allocations
* Non-blocking sends
* Http Server
* Ideal for microservices - embeddable, lightweight
* Configurable threading - Single threaded for easy state management or use jetlang pool fibers for massive scalability
#Getting Started
https://github.com/jetlang/remoting/tree/master/src/test/java/org/jetlang/remote/example/ws
#Jetlang Remoting Api Features
* Language agnostic messaging protocol - https://github.com/jetlang/remoting/wiki
* Stateful distributed sessions
* Session heartbeating
* Session lifecycles - Connect, Heartbeat, Session Timeout, Logout, Disconnect
* Automatic reconnects
* Asynchronous I/O with callbacks
* Tight integration with Jetlang threading
* Message format agnostic - binary, java serialization, json, thrift, etc.
* Simple text topics
* High performance
* Embeddable - Client and Acceptor implementations
* Distributed - No central server required.
#Getting Started
https://github.com/jetlang/remoting/tree/master/src/test/java/org/jetlang/remote/example/chat