feat(): add rpc serializer and deserializer, improve performance

This commit is contained in:
Kamil Myśliwiec
2019-07-26 13:33:59 +02:00
parent 9885309cd5
commit 7f8aa92c0a
33 changed files with 368 additions and 119 deletions

View File

@@ -250,7 +250,7 @@ describe('ClientRMQ', function() {
expect(
callback.calledWith({
err: packet.err,
response: null,
response: 'test',
isDisposed: true,
}),
).to.be.true;
@@ -271,7 +271,7 @@ describe('ClientRMQ', function() {
expect(
callback.calledWith({
err: undefined,
response: null,
response: 'test',
isDisposed: true,
}),
).to.be.true;