MCPcopy
hub / github.com/hyperledger/fabric / RWSetScanner

Interface RWSetScanner

core/transientstore/store.go:48–55  ·  view source on GitHub ↗

RWSetScanner provides an iterator for EndorserPvtSimulationResults

Source from the content-addressed store, hash-verified

46
47// RWSetScanner provides an iterator for EndorserPvtSimulationResults
48type RWSetScanner interface {
49 // Next returns the next EndorserPvtSimulationResults from the RWSetScanner.
50 // It may return nil, nil when it has no further data, and also may return an error
51 // on failure
52 Next() (*EndorserPvtSimulationResults, error)
53 // Close frees the resources associated with this RWSetScanner
54 Close()
55}
56
57// EndorserPvtSimulationResults captures the details of the simulation results specific to an endorser
58type EndorserPvtSimulationResults struct {

Implementers 15

mockIteratorcore/peer/deliverevents_test.go
StateQueryIteratorcore/scc/lscc/mock/state_query_iterato
ResultsIteratorcore/scc/lscc/mock/results_iterator.go
ChaincodeResultIteratorShimcore/chaincode/lifecycle/ledger_shim.g
ResultsIteratorShimcore/chaincode/lifecycle/ledger_shim.g
StateIteratorcore/chaincode/lifecycle/mock/state_it
ResultsIteratorcore/chaincode/lifecycle/mock/results_
QueryResultsIteratorcore/chaincode/mock/results_iterator.g
RwsetScannercore/transientstore/store.go
resultsItrcore/ledger/kvledger/channelinfo_provi
blocksItrcore/ledger/kvledger/kv_ledger.go
itrCombinercore/ledger/kvledger/txmgmt/queryutil/

Calls

no outgoing calls

Tested by

no test coverage detected