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 TransactionMessageTransactionMessage.Builder. build()Signs the message, creating a new signed binary transaction message.static TransactionMessageTransactionMessage. fromBytes(byte[] bytes)Creates the transaction message from the given bytes array.TransactionMessageTransactionMessage.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 RawTransactionRawTransaction. 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 List<TransactionMessage>TestKit. findTransactionsInPool(Predicate<TransactionMessage> predicate)Returns a list of in-pool transactions that match the given predicate.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 BlockTestKit. 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 BlockTestKit. createBlockWithTransactions(Iterable<TransactionMessage> transactions)Creates a block with the given transactions.List<TransactionMessage>TestKit. findTransactionsInPool(Predicate<TransactionMessage> predicate)Returns a list of in-pool transactions that match the given predicate.