1 Star 0 Fork 0

妥協/fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
querytype.go 769 Bytes
一键复制 编辑 原始数据 按行查看 历史
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package protoext
import "github.com/hyperledger/fabric-protos-go/discovery"
// 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 GetQueryType(q *discovery.Query) QueryType {
switch {
case q.GetCcQuery() != nil:
return ChaincodeQueryType
case q.GetConfigQuery() != nil:
return ConfigQueryType
case q.GetPeerQuery() != nil:
return PeerMembershipQueryType
case q.GetLocalPeers() != nil:
return LocalMembershipQueryType
default:
return InvalidQueryType
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liurenhao/fabric.git
git@gitee.com:liurenhao/fabric.git
liurenhao
fabric
fabric
v2.1.0

搜索帮助