starpc 0.1.8 → 0.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,7 +23,6 @@ export class ServerRPC extends CommonRPC {
23
23
  }
24
24
  this.pushRpcData(packet.data, packet.dataIsZero);
25
25
  this.invokeRPC(methodDef);
26
- return super.handleCallStart(packet);
27
26
  }
28
27
  // handleCallData handles a CallData packet.
29
28
  async handleCallData(packet) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "starpc",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Streaming protobuf RPC service protocol over any two-way channel.",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -31,7 +31,6 @@ export class ServerRPC extends CommonRPC {
31
31
  }
32
32
  this.pushRpcData(packet.data, packet.dataIsZero)
33
33
  this.invokeRPC(methodDef)
34
- return super.handleCallStart(packet)
35
34
  }
36
35
 
37
36
  // handleCallData handles a CallData packet.