Uses of Interface
com.exonum.binding.common.message.TransactionMessage
-
Uses of TransactionMessage in com.exonum.binding.common.message
Methods in com.exonum.binding.common.message that return TransactionMessage Modifier and Type Method Description TransactionMessage
TransactionMessage.Builder. build()
Signs the message, creating a new signed binary transaction message.static TransactionMessage
TransactionMessage. fromBytes(byte[] bytes)
Creates the transaction message from the given bytes array.TransactionMessage
TransactionMessage.Builder. sign(KeyPair keys)
Signs the message with the given Ed25519 keys, creating a new signed binary transaction message. -
Uses of TransactionMessage in com.exonum.binding.common.serialization
Methods in com.exonum.binding.common.serialization that return types with arguments of type TransactionMessage Modifier and Type Method Description static Serializer<TransactionMessage>
StandardSerializers. transactionMessage()
Returns a serializer of transaction messages. -
Uses of TransactionMessage in com.exonum.binding.core.blockchain
Methods in com.exonum.binding.core.blockchain that return types with arguments of type TransactionMessage Modifier and Type Method Description MapIndex<HashCode,TransactionMessage>
Blockchain. getTxMessages()
Returns a map of transaction messages identified by their SHA-256 hashes. -
Uses of TransactionMessage in com.exonum.binding.core.transaction
Methods in com.exonum.binding.core.transaction with parameters of type TransactionMessage Modifier and Type Method Description static RawTransaction
RawTransaction. fromMessage(TransactionMessage txMessage)
Creates a raw transaction from the given transaction message. -
Uses of TransactionMessage in com.exonum.binding.testkit
Methods in com.exonum.binding.testkit that return types with arguments of type TransactionMessage Modifier and Type Method Description java.util.List<TransactionMessage>
TestKit. findTransactionsInPool(java.util.function.Predicate<TransactionMessage> predicate)
Returns a list of in-pool transactions that match the given predicate.java.util.List<TransactionMessage>
TestKit. getTransactionPool()
Returns a list of in-pool transactions.Methods in com.exonum.binding.testkit with parameters of type TransactionMessage Modifier and Type Method Description Block
TestKit. createBlockWithTransactions(TransactionMessage... transactions)
Creates a block with the given transaction(s).Method parameters in com.exonum.binding.testkit with type arguments of type TransactionMessage Modifier and Type Method Description Block
TestKit. createBlockWithTransactions(java.lang.Iterable<TransactionMessage> transactions)
Creates a block with the given transactions.java.util.List<TransactionMessage>
TestKit. findTransactionsInPool(java.util.function.Predicate<TransactionMessage> predicate)
Returns a list of in-pool transactions that match the given predicate.