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

proto.MessageService.proto Maven / Gradle / Ivy

syntax = "proto3";
option java_multiple_files = true;
option java_outer_classname = "MessageProto";
package com.saucesubfresh.rpc.core.grpc;

message MessageRequest {
  string body = 1;
}

message MessageResponse {
  string body = 1;
}

service MessageService {
  rpc messageProcessing(MessageRequest) returns (MessageResponse);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy