starpc 0.43.1 → 0.45.0
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.
- package/dist/echo/echo.pb.js +1 -1
- package/dist/mock/mock.pb.js +1 -1
- package/dist/rpcstream/rpcstream.pb.js +1 -1
- package/dist/srpc/rpcproto.pb.js +1 -1
- package/echo/echo.pb.ts +1 -1
- package/echo/echo_e2e_test.cpp +1048 -0
- package/echo/echo_srpc.pb.cpp +125 -0
- package/echo/echo_srpc.pb.hpp +317 -0
- package/go.mod +7 -7
- package/go.sum +14 -14
- package/mock/mock.pb.ts +1 -1
- package/mock/mock_srpc.pb.cpp +45 -0
- package/mock/mock_srpc.pb.hpp +104 -0
- package/package.json +6 -5
- package/srpc/CMakeLists.txt +59 -0
- package/srpc/client-rpc.cpp +106 -0
- package/srpc/client-rpc.hpp +68 -0
- package/srpc/client.cpp +101 -0
- package/srpc/client.hpp +66 -0
- package/srpc/common-rpc.cpp +182 -0
- package/srpc/common-rpc.hpp +109 -0
- package/srpc/errors.hpp +71 -0
- package/srpc/handler.hpp +23 -0
- package/srpc/invoker.hpp +91 -0
- package/srpc/message.hpp +28 -0
- package/srpc/msg-stream.hpp +86 -0
- package/srpc/mux.cpp +109 -0
- package/srpc/mux.hpp +64 -0
- package/srpc/packet.cpp +83 -0
- package/srpc/packet.hpp +56 -0
- package/srpc/rpcproto.pb.ts +1 -1
- package/srpc/server-rpc.cpp +97 -0
- package/srpc/server-rpc.hpp +63 -0
- package/srpc/starpc.hpp +18 -0
- package/srpc/stream.hpp +61 -0
- package/srpc/writer.hpp +60 -0
package/dist/echo/echo.pb.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protoc-gen-es-lite unknown with parameter "target=ts
|
|
1
|
+
// @generated by protoc-gen-es-lite unknown with parameter "ts_nocheck=false,target=ts"
|
|
2
2
|
// @generated from file github.com/aperturerobotics/starpc/echo/echo.proto (package echo, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
import { createMessageType, ScalarType } from '@aptre/protobuf-es-lite';
|
package/dist/mock/mock.pb.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protoc-gen-es-lite unknown with parameter "target=ts
|
|
1
|
+
// @generated by protoc-gen-es-lite unknown with parameter "ts_nocheck=false,target=ts"
|
|
2
2
|
// @generated from file github.com/aperturerobotics/starpc/mock/mock.proto (package e2e.mock, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
import { createMessageType, ScalarType } from '@aptre/protobuf-es-lite';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protoc-gen-es-lite unknown with parameter "target=ts
|
|
1
|
+
// @generated by protoc-gen-es-lite unknown with parameter "ts_nocheck=false,target=ts"
|
|
2
2
|
// @generated from file github.com/aperturerobotics/starpc/rpcstream/rpcstream.proto (package rpcstream, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
import { createMessageType, ScalarType } from '@aptre/protobuf-es-lite';
|
package/dist/srpc/rpcproto.pb.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protoc-gen-es-lite unknown with parameter "target=ts
|
|
1
|
+
// @generated by protoc-gen-es-lite unknown with parameter "ts_nocheck=false,target=ts"
|
|
2
2
|
// @generated from file github.com/aperturerobotics/starpc/srpc/rpcproto.proto (package srpc, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
import { createMessageType, ScalarType } from '@aptre/protobuf-es-lite';
|
package/echo/echo.pb.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protoc-gen-es-lite unknown with parameter "target=ts
|
|
1
|
+
// @generated by protoc-gen-es-lite unknown with parameter "ts_nocheck=false,target=ts"
|
|
2
2
|
// @generated from file github.com/aperturerobotics/starpc/echo/echo.proto (package echo, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|