interface TransactionStorage : ReadOnlyTransactionStorageThread-safe storage of transactions.
| addTransaction |
abstract fun addTransaction(transaction: SignedTransaction): UnitAdd a new transaction to the store. If the store already has a transaction with the same id it will be overwritten. |
| getTransaction |
abstract fun getTransaction(id: SecureHash): SignedTransaction?Return the transaction with the given id, or null if no such transaction exists. |
| MockTransactionStorage |
open class MockTransactionStorage : TransactionStorage |
| PerFileTransactionStorage |
class PerFileTransactionStorage : TransactionStorageFile-based transaction storage, storing transactions per file. |