async-call-rpc
Advanced tools
Changelog
6.4.0
fd34f22: add a new encoder
option and deprecate the old serializer
option
how to migrate:
// before
const options = {
channel,
serializer: {
serialization(data) { return ... },
deserialization(data) { return ... },
},
}
// after
const options = {
channel,
encoder: {
encode(data) { return ... },
decode(data) { return ... },
},
}
// before
const options = {
channel,
serializer: NoSerialization,
};
// after
const options = {
channel,
};
// before
const options = {
channel,
serializer: JSONSerialization(),
};
// after
const options = {
channel,
encoder: JSONEncoder(),
};
fd34f22: hint
added to the CallbackBasedChannel.setup(jsonRPCHandlerCallback)
and EventBasedChannel.on(listener)
.
For an isomorphic instance of AsyncCall
(used as both a server and a client),
when a new message comes, it does not clear if to call decodeRequest
or decodeRespones
.
This version introduces a new option encoder
to replace serialization
. serialization
is always working in isomorphic way.
hint
is "request"
, (encoder as ServerEncoding).decodeRequest
will be called first, if this method does not exist, (encoder as IsomorphicEncoder).decode
will be called.hint
is "response"
, (encoder as ClientEncoding).decodeResponse
will be called first, if this method does not exist, (encoder as IsomorphicEncoder).decode
will be called.hint
is not present, only encoder.decode
will be called.0d0900b: rename "key" to "name"
fd34f22: BSON_Serialization
and Msgpack_Serialization
is now deprecated
0431c15: rename AsyncCallStrictJSONRPC
to AsyncCallStrictOptions
8a38d8b: add signal
and forceSignal
to stop the instance
c9bbbd2: rename parameterStructures
to parameterStructure
fd34f22: expose JSON-RPC interfaces
fd34f22: new built-in JSONEncoder
for the new encode option.
Promise<void>
into return signature of EventBasedChannel.send
Changelog
6.2.0
Changelog
6.1.4
Changelog
6.1.3
All notable changes to this project will be documented in this file. See standard-version for commit guidelines.