mework.cloud.spring-cloud-function-grpc.4.1.3.source-code.MessageService.proto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-cloud-function-grpc Show documentation
Show all versions of spring-cloud-function-grpc Show documentation
Spring Cloud Function gRPC Support
syntax = "proto3";
option java_multiple_files = true;
package org.springframework.cloud.function.grpc;
message GrpcSpringMessage {
bytes payload = 1;
map headers = 2;
}
service MessagingService {
rpc biStream(stream GrpcSpringMessage) returns (stream GrpcSpringMessage);
rpc clientStream(stream GrpcSpringMessage) returns (GrpcSpringMessage);
rpc serverStream(GrpcSpringMessage) returns (stream GrpcSpringMessage);
rpc requestReply(GrpcSpringMessage) returns (GrpcSpringMessage);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy