aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/private/GRPCMethodName+HTTP2Encoding.m
blob: 2e9fe8d60b165c7619db190055f9c1fca1e3e597 (plain)
1
2
3
4
5
6
7
8
9
10
11
#import "GRPCMethodName+HTTP2Encoding.h"

@implementation GRPCMethodName (HTTP2Encoding)
- (NSString *)HTTP2Path {
  if (self.package) {
    return [NSString stringWithFormat:@"/%@.%@/%@", self.package, self.interface, self.method];
  } else {
    return [NSString stringWithFormat:@"/%@/%@", self.interface, self.method];
  }
}
@end