Uses of Interface
org.hyperledger.fabric.gateway.ContractEvent
-
Packages that use ContractEvent Package Description org.hyperledger.fabric.gateway This package provides the set of interfaces that enable a Java application to interact with a Fabric blockchain network. -
-
Uses of ContractEvent in org.hyperledger.fabric.gateway
Methods in org.hyperledger.fabric.gateway that return types with arguments of type ContractEvent Modifier and Type Method Description java.util.function.Consumer<ContractEvent>
Contract. addContractListener(long startBlock, java.util.function.Consumer<ContractEvent> listener)
Add a listener to replay contract events emitted by committed transactions.java.util.function.Consumer<ContractEvent>
Contract. addContractListener(long startBlock, java.util.function.Consumer<ContractEvent> listener, java.lang.String eventName)
Add a listener to replay contract events emitted by committed transactions.java.util.function.Consumer<ContractEvent>
Contract. addContractListener(long startBlock, java.util.function.Consumer<ContractEvent> listener, java.util.regex.Pattern eventNamePattern)
Add a listener to replay contract events emitted by committed transactions.java.util.function.Consumer<ContractEvent>
Contract. addContractListener(java.util.function.Consumer<ContractEvent> listener)
Add a listener to receive all contract events emitted by committed transactions.java.util.function.Consumer<ContractEvent>
Contract. addContractListener(java.util.function.Consumer<ContractEvent> listener, java.lang.String eventName)
Add a listener to receive contract events emitted by committed transactions.java.util.function.Consumer<ContractEvent>
Contract. addContractListener(java.util.function.Consumer<ContractEvent> listener, java.util.regex.Pattern eventNamePattern)
Add a listener to receive contract events emitted by committed transactions.java.util.function.Consumer<ContractEvent>
Contract. addContractListener(Checkpointer checkpointer, java.util.function.Consumer<ContractEvent> listener)
Add a listener to receive all contract events emitted by committed transactions with checkpointing.java.util.function.Consumer<ContractEvent>
Contract. addContractListener(Checkpointer checkpointer, java.util.function.Consumer<ContractEvent> listener, java.lang.String eventName)
Add a listener to receive contract events emitted by committed transactions with checkpointing.java.util.function.Consumer<ContractEvent>
Contract. addContractListener(Checkpointer checkpointer, java.util.function.Consumer<ContractEvent> listener, java.util.regex.Pattern eventNamePattern)
Add a listener to receive contract events emitted by committed transactions with checkpointing.Method parameters in org.hyperledger.fabric.gateway with type arguments of type ContractEvent Modifier and Type Method Description java.util.function.Consumer<ContractEvent>
Contract. addContractListener(long startBlock, java.util.function.Consumer<ContractEvent> listener)
Add a listener to replay contract events emitted by committed transactions.java.util.function.Consumer<ContractEvent>
Contract. addContractListener(long startBlock, java.util.function.Consumer<ContractEvent> listener, java.lang.String eventName)
Add a listener to replay contract events emitted by committed transactions.java.util.function.Consumer<ContractEvent>
Contract. addContractListener(long startBlock, java.util.function.Consumer<ContractEvent> listener, java.util.regex.Pattern eventNamePattern)
Add a listener to replay contract events emitted by committed transactions.java.util.function.Consumer<ContractEvent>
Contract. addContractListener(java.util.function.Consumer<ContractEvent> listener)
Add a listener to receive all contract events emitted by committed transactions.java.util.function.Consumer<ContractEvent>
Contract. addContractListener(java.util.function.Consumer<ContractEvent> listener, java.lang.String eventName)
Add a listener to receive contract events emitted by committed transactions.java.util.function.Consumer<ContractEvent>
Contract. addContractListener(java.util.function.Consumer<ContractEvent> listener, java.util.regex.Pattern eventNamePattern)
Add a listener to receive contract events emitted by committed transactions.java.util.function.Consumer<ContractEvent>
Contract. addContractListener(Checkpointer checkpointer, java.util.function.Consumer<ContractEvent> listener)
Add a listener to receive all contract events emitted by committed transactions with checkpointing.java.util.function.Consumer<ContractEvent>
Contract. addContractListener(Checkpointer checkpointer, java.util.function.Consumer<ContractEvent> listener, java.lang.String eventName)
Add a listener to receive contract events emitted by committed transactions with checkpointing.java.util.function.Consumer<ContractEvent>
Contract. addContractListener(Checkpointer checkpointer, java.util.function.Consumer<ContractEvent> listener, java.util.regex.Pattern eventNamePattern)
Add a listener to receive contract events emitted by committed transactions with checkpointing.void
Contract. removeContractListener(java.util.function.Consumer<ContractEvent> listener)
Remove a previously registered contract listener.
-