1. 2b116ef Encode binary headers with Base64 on the wire, and requires all binary headers by zhangkun · 10 years ago
  2. 63fc647 Inspect content type from trailers when there are no headers. by zhangkun · 10 years ago
  3. fb09bba Don't leak decompressor in gRPC v2. by ejona · 10 years ago
  4. 8375cd0 GRPC Java clients will send the "te: trailers" header, and the server will by zhangkun · 10 years ago
  5. 4332c2f Change the HTTP code -> GRPC Status mapping to comply with http canonical mapping by zhangkun · 10 years ago
  6. c5e70c2 Remove StreamState and use inboundPhase/outboundPhase instead by lryan · 10 years ago
  7. f96e7e8 Use real TLS security by default. by ejona · 10 years ago
  8. 054f595 Separate the default event loop groups for client and server, to prevent by zhangkun · 10 years ago
  9. 63271f4 Fixing a compatibility issue between the GFE and gRPC java client for the V2 protocol. by nathanmittler · 10 years ago
  10. 5d953e8 Updating gRPC code to use the latest Netty with application-level flow control support. by nathanmittler · 10 years ago
  11. 01152e0 Fix workaround in place for GFE's lack of trailers. by ejona · 10 years ago
  12. 0f56c47 Handle exceptions thrown by the application by ejona · 10 years ago
  13. 1f2a186 Fix NullPointerException in AbstractServerStream when deframer reports error and fix error message propagation by lryan · 10 years ago
  14. aa0b7cc Forbid calling next more than once in interceptors. by zhangkun · 10 years ago
  15. 4073a8a Remove redundant field from AbstractClientStream by lryan · 10 years ago
  16. 669724a Rationalize the XXXStream classes to reduce code smear and make Netty/OkHTTP behave more consistently. by lryan · 10 years ago
  17. ff669ac More precise Builder generics by ejona · 10 years ago
  18. 776ff86 Eliminate ForwardingChannel and switch all use cases to client interceptors. by zhangkun · 10 years ago
  19. 48e734d Dedicated ClientInterceptor interface and utilities. by zhangkun · 10 years ago
  20. 9a148a5 Remove outbound flow control interface. by ejona · 10 years ago
  21. 7dc48e2 SharedResourceHolder is a utility that manages expensive resources (thread by zhangkun · 10 years ago
  22. 29cbef1 Renaming gRPC-java "newtransport" package to just "transport". by nathanmittler · 10 years ago
  23. 3c986bb Move protobuf code dependencies to net/stubby/proto by simonma · 10 years ago
  24. 0304b3d Cleaning up various compiler warnings in preparation for opensource. by nathanmittler · 10 years ago
  25. df9867d Support early-OK from Server. by ejona · 10 years ago
  26. 0a58533 Pre-serialize status codes, for efficiency by ejona · 10 years ago
  27. 46118bb Add server support for TLS. by ejona · 10 years ago
  28. 988f219 Handle Headers and Trailers in OkHttp client transport. by simonma · 10 years ago
  29. 1e55c6e Remove Deframer and InputStreamDeframer since we are not using them anymore. by simonma · 10 years ago
  30. 2ce8215 Fix bug 18054433, only register one listener on transport service. by simonma · 10 years ago
  31. 28fb46e Updates to migrate to the latest Netty version. by nathanmittler · 10 years ago
  32. 28497e3 Add support for servers to deliver response headers by lryan · 10 years ago
  33. 29d8c03 Support inbound flow control in okhttp transport, and the first step to support V2 protocol. by simonma · 10 years ago
  34. b95c094 The client and server usage examples based on stock.proto. by zhangkun · 10 years ago
  35. fcab51c Don't send 0-length data frame. by simonma · 10 years ago
  36. 8d6d12e Convenient builders for channels and servers. by zhangkun · 10 years ago
  37. 3411fda Implement trailer support in Netty transport by ejona · 10 years ago
  38. 8c76c8a Remove Java 7isms and fix Maven compilation by ejona · 10 years ago
  39. c1f4b73 Adding shutdown logic to NettyServerTransport. by nathanmittler · 10 years ago
  40. de0a16c Use something closer to the appropriate mime-type. by ejona · 10 years ago
  41. dd7ba53 gRPC status is always sent as ASCII. by ejona · 10 years ago
  42. 55892fe Send connection preface and setting when the okhttp client transport starts, this is required for talking to netty server. by simonma · 10 years ago
  43. 125c1ce Delete Session, Operation and ALL of its associated cruft. by lryan · 10 years ago
  44. 7bc12bf Upgrade OkHttp to the head (commit 2d6b3770d9ef3424a12c4c243596a34cc07cbef1), for having Http2 draft 14. by simonma · 10 years ago
  45. 06ed8ec Various updates to properly handle gRPC connection startup and shutdown. by nathanmittler · 10 years ago
  46. bb9699e Fixes a few issues in netty server transport: by zhangkun · 10 years ago
  47. 53acb1c Remove the old & new HTTP transports as they are incapable of supporting trailers using their by lryan · 10 years ago
  48. 52f92d0 Use our own SerializingExecutor. by simonma · 10 years ago
  49. 01c9617 GRPC server codegen: generates the bindService() method that returns a by zhangkun · 10 years ago
  50. 1dcc3c7 Added SSL support to gRPC java server used for integration tests. by wonderfly · 10 years ago
  51. 653ffd9 ServerImpl by ejona · 10 years ago
  52. eb3fc58 Create an in-process adapter between ClientTransport and HandlerRegistry by lryan · 10 years ago
  53. 8f6e2c2 Fix UNAUTHENTICATED status to point in Java Status class to point to correct code. by scottpeterson · 10 years ago
  54. 71e4a92 First steps in reducing dependency on proto from runtime. by lryan · 10 years ago
  55. 65be3c7 Simple echo client. by nathanmittler · 10 years ago
  56. f7bbb97 Removed proto dependency from Buffers.java: by simonma · 10 years ago
  57. 1369ea1 Metadata improvements. by lryan · 10 years ago
  58. 5579411 Fix reference counting misaccounting. by ejona · 10 years ago
  59. 6fc356b Split out a ClientStreamListener from StreamListener. by ejona · 10 years ago
  60. 9d50299 Plumb trailer passing through transport streams. by ejona · 10 years ago
  61. fc7a052 Updating gRPC code to the latest Netty version which supports binary headers. by nathanmittler · 10 years ago
  62. ef2129c Add halfClose() to StreamListener. by ejona · 10 years ago
  63. 913de47 Add support for new gRPC protocol by ejona · 10 years ago
  64. 029f0d2 Don't use switch on string, for Java 6 compatibility by ejona · 10 years ago
  65. 23fbc7c Adding support for manually specifying HTTP/2 :authority and :path headers. by nathanmittler · 10 years ago
  66. a7d735e Phase 2 of converting to new Headers mechanism for side-channel. by lryan · 10 years ago
  67. e4bd1c7 Phase 1 of converting to new Headers mechanism for side-channel. by lryan · 10 years ago
  68. 23ac15a Use String instead of MethodDescriptor in ServerCallHandler. by ejona · 10 years ago
  69. 8f3e9ee Remove usage of ImmutableXX collectors from calsses that GRpc Android version will care. by simonma · 10 years ago
  70. 18eb63b Remove dependencies on Google common internal: by simonma · 10 years ago
  71. 92938d1 Mimic MethodDescriptor in ServerMethodDefinition when serializing messages. by ejona · 10 years ago
  72. 8b23526 Correct tense of ServerCall.Listener.onCompleted(). by ejona · 10 years ago
  73. 43d2fcc Adding inbound flow control to Netty client and server transports. by nathanmittler · 10 years ago
  74. 048649e Implements the netty-based server transport. by zhangkun · 10 years ago
  75. 4e315e0 Fix more transport error and shutdown scenarios. by ejona · 10 years ago
  76. 4a3b5d1 Fix possible NPE when starting a transport fails before startAsync() returns. by ejona · 10 years ago
  77. e081a22 Updates to GRPC code resulting from Netty upgrade. by nathanmittler · 10 years ago
  78. b645b38 Fix a NPE, Http20Draft12 requires non-null debugData for FrameWriter.goAway(). by simonma · 10 years ago
  79. 070e308 Have stricter dependencies and build in modules. by ejona · 10 years ago
  80. 603959e Remove unused ByteBufDeframer. by ejona · 10 years ago
  81. 886f40d Add missing generics for ServerMethodDefinition in ServerServiceDefinition. by ejona · 10 years ago
  82. 290d657 Remove unnecessary Generic parameters from ServerCall. by ejona · 10 years ago
  83. 42af07c Upgrade GRPC Java/Netty to HTTP/2 draft 14. by nathanmittler · 10 years ago
  84. 34aede3 Move inner classes out of Server. by ejona · 10 years ago
  85. ba71ee9 Swap Server from Builder to HandlerRegistry. by ejona · 10 years ago
  86. 64eae04 Refactoring Deframing code for Netty. by nathanmittler · 10 years ago
  87. e1ae25c Makes the Status-generated exceptions contain the status code. by zhangkun · 10 years ago
  88. 1966d5b Make sure Stream.cancel() can be called multiple times. by simonma · 10 years ago
  89. f2c4c85 Update integration tests. by simonma · 10 years ago
  90. c7d33bf Define threading expectation for Stream by zhangkun · 10 years ago
  91. 621706a Add basic OAuth support to gRPC. by ejona · 10 years ago
  92. 88efcaf Adding CompositeBuffer and a few other utilties related to Buffers. by nathanmittler · 10 years ago
  93. bd56449 Adding new interface GrpcMessageListener and refactoring framing classes to use it. by nathanmittler · 10 years ago
  94. a9c6c08 Add missing generics in MethodDescriptor by ejona · 10 years ago
  95. 7bf17dc Improve okhttp client transport, handles go away and add unit test. by simonma · 10 years ago
  96. 5f334f7 Adding support for TLS negotiation to new Netty transport. by nathanmittler · 10 years ago
  97. ed85499 Renames Stream.close() to Stream.halfClose(), to be consistent with by zhangkun · 10 years ago
  98. 712e9c1 Adds call type to MethodDescriptor as some transports need to know whether by zhangkun · 10 years ago
  99. f97eb73 Add Server API, a.k.a., Channel for incoming requests. by ejona · 10 years ago
  100. edee75f Migrate callers of MoreExecutors.sameThreadExecutor() to use either by lukes · 10 years ago