代码拉取完成,页面将自动刷新
/*
Copyright IBM Corp. 2016-2017 All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package common
import (
"context"
"crypto/tls"
ab "github.com/hyperledger/fabric-protos-go/orderer"
"github.com/hyperledger/fabric/internal/pkg/comm"
"github.com/pkg/errors"
)
// OrdererClient represents a client for communicating with an ordering
// service
type OrdererClient struct {
CommonClient
}
// NewOrdererClientFromEnv creates an instance of an OrdererClient from the
// global Viper instance
func NewOrdererClientFromEnv() (*OrdererClient, error) {
address, override, clientConfig, err := configFromEnv("orderer")
if err != nil {
return nil, errors.WithMessage(err, "failed to load config for OrdererClient")
}
gClient, err := comm.NewGRPCClient(clientConfig)
if err != nil {
return nil, errors.WithMessage(err, "failed to create OrdererClient from config")
}
oClient := &OrdererClient{
CommonClient: CommonClient{
GRPCClient: gClient,
Address: address,
sn: override}}
return oClient, nil
}
// Broadcast returns a broadcast client for the AtomicBroadcast service
func (oc *OrdererClient) Broadcast() (ab.AtomicBroadcast_BroadcastClient, error) {
conn, err := oc.CommonClient.NewConnection(oc.Address, comm.ServerNameOverride(oc.sn))
if err != nil {
return nil, errors.WithMessagef(err, "orderer client failed to connect to %s", oc.Address)
}
// TODO: check to see if we should actually handle error before returning
return ab.NewAtomicBroadcastClient(conn).Broadcast(context.TODO())
}
// Deliver returns a deliver client for the AtomicBroadcast service
func (oc *OrdererClient) Deliver() (ab.AtomicBroadcast_DeliverClient, error) {
conn, err := oc.CommonClient.NewConnection(oc.Address, comm.ServerNameOverride(oc.sn))
if err != nil {
return nil, errors.WithMessagef(err, "orderer client failed to connect to %s", oc.Address)
}
// TODO: check to see if we should actually handle error before returning
return ab.NewAtomicBroadcastClient(conn).Deliver(context.TODO())
}
// Certificate returns the TLS client certificate (if available)
func (oc *OrdererClient) Certificate() tls.Certificate {
return oc.CommonClient.Certificate()
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。