Adds Class prefix RMT

pull/1341/head
Jorge Canizales 10 years ago
parent 1380ac8941
commit 41a53741d8
  1. 4
      src/objective-c/examples/Sample/RemoteTestClient/empty.proto
  2. 4
      src/objective-c/examples/Sample/RemoteTestClient/messages.proto
  3. 3
      src/objective-c/examples/Sample/RemoteTestClient/test.proto

@ -29,8 +29,12 @@
syntax = "proto2";
import "google/protobuf/objectivec-descriptor.proto";
package grpc.testing;
option (google.protobuf.objectivec_file_options).class_prefix = "RMT";
// An empty message that you can re-use to avoid defining duplicated empty
// messages in your project. A typical example is to use it as argument or the
// return value of a service API. For instance:

@ -31,8 +31,12 @@
syntax = "proto2";
import "google/protobuf/objectivec-descriptor.proto";
package grpc.testing;
option (google.protobuf.objectivec_file_options).class_prefix = "RMT";
// The type of payload that should be returned.
enum PayloadType {
// Compressable text format.

@ -33,9 +33,12 @@ syntax = "proto2";
import "empty.proto";
import "messages.proto";
import "google/protobuf/objectivec-descriptor.proto";
package grpc.testing;
option (google.protobuf.objectivec_file_options).class_prefix = "RMT";
// A simple service to test the various types of RPCs and experiment with
// performance with various types of payload.
service TestService {

Loading…
Cancel
Save