项目作者: markaren

项目描述 :
Yet Another JSON RPC (YAJ-RPC) is a JSON RPC 2.0 implementation for JVM languages, written in Kotlin
高级语言: Kotlin
项目地址: git://github.com/markaren/YAJ-RPC.git
创建时间: 2018-02-24T19:10:40Z
项目社区:https://github.com/markaren/YAJ-RPC

开源协议:MIT License

下载


YAJ-RPC

License: MIT
contributions welcome


Join the chat at https://gitter.im/markaren/YAJ-RPC

CircleCI

Yet Another JSON-RPC (YAJ-RPC) is a JSON RPC 2.0 implementation for JVM languages written in Kotlin.

Client and server for WebSockets, TCP/IP ZeroMQ and HTTP are available,
but the RPC implementations itself is totally independent from any networking logic.


Artifacts are available through Bintray.

  1. repositories {
  2. /*...*/
  3. maven { url "https://dl.bintray.com/laht/mvn" }
  4. }
  5. dependencies {
  6. def yajrpc_version = "..."
  7. implementation group: 'info.laht.yaj-rpc', name: 'yaj-rpc', version: yajrpc_version
  8. implementation group: 'info.laht.yaj-rpc', name: 'yaj-rpc-ws', version: yajrpc_version
  9. implementation group: 'info.laht.yaj-rpc', name: 'yaj-rpc-tcp', version: yajrpc_version
  10. implementation group: 'info.laht.yaj-rpc', name: 'yaj-rpc-zmq', version: yajrpc_version
  11. implementation group: 'info.laht.yaj-rpc', name: 'yaj-rpc-http', version: yajrpc_version
  12. }

jitpack may also be used.

To get started head over to the Wiki!