mirror of https://github.com/grpc/grpc-dart.git
Export the Code protobuf (#625)
This commit is contained in:
parent
7be6275f03
commit
14824dd5d8
|
@ -10,6 +10,7 @@
|
||||||
* Expose client IP address to server
|
* Expose client IP address to server
|
||||||
* Add a `channelShutdownHandler` argument to `ClientChannel` and the subclasses.
|
* Add a `channelShutdownHandler` argument to `ClientChannel` and the subclasses.
|
||||||
This callback can be used to react to channel shutdown or termination.
|
This callback can be used to react to channel shutdown or termination.
|
||||||
|
* Export the `Code` protobuf enum from the `grpc.dart` library.
|
||||||
|
|
||||||
## 3.1.0
|
## 3.1.0
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,8 @@ export 'src/client/options.dart'
|
||||||
export 'src/client/transport/http2_credentials.dart'
|
export 'src/client/transport/http2_credentials.dart'
|
||||||
show BadCertificateHandler, allowBadCertificates, ChannelCredentials;
|
show BadCertificateHandler, allowBadCertificates, ChannelCredentials;
|
||||||
|
|
||||||
/// Status detail types
|
/// Status detail types and error codes
|
||||||
|
export 'src/generated/google/rpc/code.pbenum.dart';
|
||||||
export 'src/generated/google/rpc/error_details.pb.dart';
|
export 'src/generated/google/rpc/error_details.pb.dart';
|
||||||
export 'src/server/call.dart' show ServiceCall;
|
export 'src/server/call.dart' show ServiceCall;
|
||||||
export 'src/server/interceptor.dart' show Interceptor;
|
export 'src/server/interceptor.dart' show Interceptor;
|
||||||
|
|
Loading…
Reference in New Issue