Source File
serviceconfig.go
Belonging Package
google.golang.org/grpc/internal/serviceconfig
package serviceconfig
import (
externalserviceconfig
)
var logger = grpclog.Component("core")
type BalancerConfig struct {
Name string
Config externalserviceconfig.LoadBalancingConfig
}
type intermediateBalancerConfig []map[string]json.RawMessage
func ( *BalancerConfig) ( []byte) error {
var intermediateBalancerConfig
:= json.Unmarshal(, &)
if != nil {
return
}
for , := range {
if len() != 1 {
return fmt.Errorf("invalid loadBalancingConfig: entry %v does not contain exactly 1 policy/config pair: %q", , )
}
var (
string
json.RawMessage
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |