interface ReadOnlyTransactionStorageThread-safe storage of transactions.
| updates |
abstract val updates: <ERROR CLASS><SignedTransaction>Get a synchronous Observable of updates. When observations are pushed to the Observer, the vault will already incorporate the update. |
| getTransaction |
abstract fun getTransaction(id: SecureHash): SignedTransaction?Return the transaction with the given id, or null if no such transaction exists. |
| track |
abstract fun track(): <ERROR CLASS><List<SignedTransaction>, <ERROR CLASS><SignedTransaction>>Returns all currently stored transactions and further fresh ones. |
| TransactionStorage |
interface TransactionStorage : ReadOnlyTransactionStorageThread-safe storage of transactions. |