File tree Expand file tree Collapse file tree 5 files changed +9
-21
lines changed
core/src/main/java/io/grpc/transport
netty/src/main/java/io/grpc/netty
okhttp/src/main/java/io/grpc/okhttp Expand file tree Collapse file tree 5 files changed +9
-21
lines changed Original file line number Diff line number Diff line change @@ -293,24 +293,24 @@ gRPC comes with three Transport implementations:
293293 [ OkHttp] ( http://square.github.io/okhttp/ ) . It is mainly for use on Android
294294 and is for client only.
2952953 . The
296- [ inProcess] ( https://github.com/google/grpc-java/blob/master/core/src/main/java/io/grpc/transport/ inprocess )
296+ [ inProcess] ( https://github.com/google/grpc-java/blob/master/core/src/main/java/io/grpc/inprocess )
297297 transport is for when a server is in the same process as the client. It is
298298 useful for testing.
299299
300300#### Common
301301
302- * [ Stream] ( https://github.com/google/grpc-java/blob/master/core/src/main/java/io/grpc/transport /Stream.java )
303- * [ Stream Listener] ( https://github.com/google/grpc-java/blob/master/core/src/main/java/io/grpc/transport /StreamListener.java )
302+ * [ Stream] ( https://github.com/google/grpc-java/blob/master/core/src/main/java/io/grpc/internal /Stream.java )
303+ * [ Stream Listener] ( https://github.com/google/grpc-java/blob/master/core/src/main/java/io/grpc/internal /StreamListener.java )
304304
305305#### Client
306306
307- * [ Client Stream] ( https://github.com/google/grpc-java/blob/master/core/src/main/java/io/grpc/transport /ClientStream.java )
308- * [ Client Stream Listener] ( https://github.com/google/grpc-java/blob/master/core/src/main/java/io/grpc/transport /ClientStreamListener.java )
307+ * [ Client Stream] ( https://github.com/google/grpc-java/blob/master/core/src/main/java/io/grpc/internal /ClientStream.java )
308+ * [ Client Stream Listener] ( https://github.com/google/grpc-java/blob/master/core/src/main/java/io/grpc/internal /ClientStreamListener.java )
309309
310310#### Server
311311
312- * [ Server Stream] ( https://github.com/google/grpc-java/blob/master/core/src/main/java/io/grpc/transport /ServerStream.java )
313- * [ Server Stream Listener] ( https://github.com/google/grpc-java/blob/master/core/src/main/java/io/grpc/transport /ServerStreamListener.java )
312+ * [ Server Stream] ( https://github.com/google/grpc-java/blob/master/core/src/main/java/io/grpc/internal /ServerStream.java )
313+ * [ Server Stream Listener] ( https://github.com/google/grpc-java/blob/master/core/src/main/java/io/grpc/internal /ServerStreamListener.java )
314314
315315
316316### Examples
Load Diff This file was deleted.
File renamed without changes.
Original file line number Diff line number Diff line change 22 * The main transport implementation based on <a target="_blank" href="http://netty.io">Netty</a>,
33 * for both the client and the server.
44 */
5- package io .grpc .transport . netty ;
5+ package io .grpc .netty ;
Original file line number Diff line number Diff line change 33 * <a target="_blank" href="http://square.github.io/okhttp/">OkHttp</a>, mainly for use on Android
44 * (client-only).
55 */
6- package io .grpc .transport . okhttp ;
6+ package io .grpc .okhttp ;
You can’t perform that action at this time.
0 commit comments