Я пытался понять ACL в Hyperledger Fabric v1.3.Я прочитал configtx.yaml
и увидел раздел channel
, описанный ниже:
Channel: &ChannelDefaults
# Policies defines the set of policies at this level of the config tree
# For Channel policies, their canonical path is
# /Channel/<PolicyName>
Policies:
# Who may invoke the 'Deliver' API
Readers:
Type: ImplicitMeta
Rule: "ANY Readers"
# Who may invoke the 'Broadcast' API
Writers:
Type: ImplicitMeta
Rule: "ANY Writers"
# By default, who may modify elements at this config level
Admins:
Type: ImplicitMeta
Rule: "MAJORITY Admins"
В соответствии с документацией он упоминается для Readers
# Who may invoke the 'Deliver' API
и для Writers
# Who may invoke the 'Broadcast' API
.Я не могу понять, что Deliver API
и что Broadcast API
делают.
Пожалуйста, дайте мне знать, если кто-нибудь знает.