You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

55 lines
2.1 KiB

  1. /*
  2. * Copyright 2016 gRPC authors.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. *
  16. */
  17. // Package internal contains gRPC-internal code, to avoid polluting
  18. // the godoc of the top-level grpc package. It must not import any grpc
  19. // symbols to avoid circular dependencies.
  20. package internal
  21. import (
  22. "context"
  23. "time"
  24. )
  25. var (
  26. // WithResolverBuilder is exported by dialoptions.go
  27. WithResolverBuilder interface{} // func (resolver.Builder) grpc.DialOption
  28. // WithHealthCheckFunc is not exported by dialoptions.go
  29. WithHealthCheckFunc interface{} // func (HealthChecker) DialOption
  30. // HealthCheckFunc is used to provide client-side LB channel health checking
  31. HealthCheckFunc HealthChecker
  32. // BalancerUnregister is exported by package balancer to unregister a balancer.
  33. BalancerUnregister func(name string)
  34. // KeepaliveMinPingTime is the minimum ping interval. This must be 10s by
  35. // default, but tests may wish to set it lower for convenience.
  36. KeepaliveMinPingTime = 10 * time.Second
  37. )
  38. // HealthChecker defines the signature of the client-side LB channel health checking function.
  39. type HealthChecker func(ctx context.Context, newStream func() (interface{}, error), reportHealth func(bool), serviceName string) error
  40. const (
  41. // CredsBundleModeFallback switches GoogleDefaultCreds to fallback mode.
  42. CredsBundleModeFallback = "fallback"
  43. // CredsBundleModeBalancer switches GoogleDefaultCreds to grpclb balancer
  44. // mode.
  45. CredsBundleModeBalancer = "balancer"
  46. // CredsBundleModeBackendFromBalancer switches GoogleDefaultCreds to mode
  47. // that supports backend returned by grpclb balancer.
  48. CredsBundleModeBackendFromBalancer = "backend-from-balancer"
  49. )