Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
G
gRPC Distributed Computation
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
diaa.hanna
gRPC Distributed Computation
Commits
d2009528
You need to sign in or sign up before continuing.
Commit
d2009528
authored
Nov 13, 2025
by
drnull03
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forget to update the gloabal proto opps
parent
3178f290
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
0 deletions
+24
-0
logs.db
nodeGRPC/logs.db
+0
-0
add.proto
proto/add.proto
+12
-0
multiply.proto
proto/multiply.proto
+12
-0
add_logs.db
pythonGRPC/add_logs.db
+0
-0
No files found.
nodeGRPC/logs.db
View file @
d2009528
No preview for this file type
proto/add.proto
View file @
d2009528
...
@@ -16,5 +16,17 @@ message AddResponse {
...
@@ -16,5 +16,17 @@ message AddResponse {
// The AddService definition
// The AddService definition
service
AddService
{
service
AddService
{
rpc
Add
(
AddRequest
)
returns
(
AddResponse
);
rpc
Add
(
AddRequest
)
returns
(
AddResponse
);
rpc
StreamLogs
(
LogRequest
)
returns
(
stream
LogEntry
);
}
}
message
LogRequest
{
int32
limit
=
1
;
// optional: how many records to fetch
}
message
LogEntry
{
double
a
=
1
;
double
b
=
2
;
double
result
=
3
;
string
timestamp
=
4
;
}
proto/multiply.proto
View file @
d2009528
...
@@ -13,4 +13,16 @@ message MultiplyResponse {
...
@@ -13,4 +13,16 @@ message MultiplyResponse {
service
MultiplyService
{
service
MultiplyService
{
rpc
Multiply
(
MultiplyRequest
)
returns
(
MultiplyResponse
);
rpc
Multiply
(
MultiplyRequest
)
returns
(
MultiplyResponse
);
rpc
StreamLogs
(
LogRequest
)
returns
(
stream
LogEntry
);
}
message
LogRequest
{
int32
limit
=
1
;
// optional, number of logs
}
message
LogEntry
{
double
a
=
1
;
double
b
=
2
;
double
result
=
3
;
string
timestamp
=
4
;
}
}
pythonGRPC/add_logs.db
View file @
d2009528
No preview for this file type
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment