All Downloads are FREE. Search and download functionalities are using the official Maven repository.

y.grpc-long-polling.integration-testing.1.0-8.source-code.down_streaming.proto Maven / Gradle / Ivy

There is a newer version: 1.0-9
Show newest version
syntax = "proto3";

option java_multiple_files = true;
option java_package = "io.grpc.examples.serverstreaming";
option java_outer_classname = "DownStreamingProto";
option objc_class_prefix = "HLWS";

package tap;

// The greeting service definition.
service ServerStreamingGreeter {
    // Streams a many greetings
    rpc SayHelloStreaming (TapHelloRequest) returns (stream TapHelloReply) {
    }
}

// The request message containing the user's name.
message TapHelloRequest {
    string name = 1;
}

// The response message containing the greetings
message TapHelloReply {
    string message = 1;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy