This repository has been archived by the owner on May 6, 2024. It is now read-only.
Releases: IOMirea/jarpc
Releases · IOMirea/jarpc
0.3.1
0.3.0
Breaking changes
- Library renamed to jarpc
Server.respond
->Request.reply
Client.run
->Client.start
Server.run
->Server.start
- Removed Server argument in callbacks. It can be accessed using
Request.server
What's new
- Introduced
Slient
mode - Responses object can be either awaited or used as async iterator
- Custom encoder support
wait_until_ready
method for all Connection modesexpect_responses
argument forClient.call
- Default values for clients (
default_expect_responses
,default_timeout
)
Other
- Documentation: https://jarpc.rtfd.io
- PyPi release: https://pypi.org/project/jarpc
v0.2.0
v0.1.2
v0.1.1
Breaking changes
run method of both client and server now runs handler directly. It means that it will block your application if called with await. You should create task to run it now.
What's new
Implemeted stop methods for client and server.