20 lines
289 B
Protocol Buffer
20 lines
289 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option csharp_namespace = "TestGrpc";
|
|
|
|
package greet;
|
|
|
|
service Greeter {
|
|
rpc DownloadFile (FileRequest) returns (stream ChunkMsg);
|
|
}
|
|
|
|
message FileRequest {
|
|
string FilePath = 1;
|
|
}
|
|
|
|
message ChunkMsg {
|
|
string FileName = 1;
|
|
int64 FileSize = 2;
|
|
bytes Chunk = 3;
|
|
}
|