代码拉取完成,页面将自动刷新
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package discovery
import (
"github.com/golang/protobuf/proto"
)
// QueryType defines the types of service discovery requests
type QueryType uint8
const (
InvalidQueryType QueryType = iota
ConfigQueryType
PeerMembershipQueryType
ChaincodeQueryType
LocalMembershipQueryType
)
// GetType returns the type of the request
func (q *Query) GetType() QueryType {
if q.GetCcQuery() != nil {
return ChaincodeQueryType
}
if q.GetConfigQuery() != nil {
return ConfigQueryType
}
if q.GetPeerQuery() != nil {
return PeerMembershipQueryType
}
if q.GetLocalPeers() != nil {
return LocalMembershipQueryType
}
return InvalidQueryType
}
// ToRequest deserializes this SignedRequest's payload
// and returns the serialized Request in its object form.
// Returns an error in case the operation fails.
func (sr *SignedRequest) ToRequest() (*Request, error) {
req := &Request{}
return req, proto.Unmarshal(sr.Payload, req)
}
// ConfigAt returns the ConfigResult at a given index in the Response,
// or an Error if present.
func (m *Response) ConfigAt(i int) (*ConfigResult, *Error) {
r := m.Results[i]
return r.GetConfigResult(), r.GetError()
}
// MembershipAt returns the PeerMembershipResult at a given index in the Response,
// or an Error if present.
func (m *Response) MembershipAt(i int) (*PeerMembershipResult, *Error) {
r := m.Results[i]
return r.GetMembers(), r.GetError()
}
// EndorsersAt returns the PeerMembershipResult at a given index in the Response,
// or an Error if present.
func (m *Response) EndorsersAt(i int) (*ChaincodeQueryResult, *Error) {
r := m.Results[i]
return r.GetCcQueryRes(), r.GetError()
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。