Uses of Interface
org.hyperledger.fabric.client.ChaincodeEvent
Packages that use ChaincodeEvent
Package
Description
This package provides the set of interfaces that enable a Java application to
interact with a Fabric blockchain network.
-
Uses of ChaincodeEvent in org.hyperledger.fabric.client
Subinterfaces with type arguments of type ChaincodeEvent in org.hyperledger.fabric.clientModifier and TypeInterfaceDescriptioninterfaceA Fabric Gateway call to obtain chaincode events.static interfaceBuilder used to create a new chaincode events request.Methods in org.hyperledger.fabric.client that return types with arguments of type ChaincodeEventModifier and TypeMethodDescriptiondefault CloseableIterator<ChaincodeEvent> Network.getChaincodeEvents(String chaincodeName) Get events emitted by transaction functions of a specific chaincode from the next committed block.Network.getChaincodeEvents(String chaincodeName, UnaryOperator<CallOptions> options) Get events emitted by transaction functions of a specific chaincode from the next committed block.default CloseableIterator<ChaincodeEvent> Network.getChaincodeEvents(String chaincodeName, CallOption... options) Deprecated.Methods in org.hyperledger.fabric.client with parameters of type ChaincodeEventModifier and TypeMethodDescriptionvoidCheckpointer.checkpointChaincodeEvent(ChaincodeEvent event) Checkpoint a chaincode event.voidFileCheckpointer.checkpointChaincodeEvent(ChaincodeEvent event) voidInMemoryCheckpointer.checkpointChaincodeEvent(ChaincodeEvent event)
Network.getChaincodeEvents(String, UnaryOperator).