All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.axway.iron.spi.storage.TransactionStoreFactory Maven / Gradle / Ivy

package io.axway.iron.spi.storage;

/**
 * SPI for transaction store.
 */
public interface TransactionStoreFactory {
    /**
     * Create a transaction store (eg redolog) for the given store.
     *
     * @param storeName the name of the store
     * @return the {@link TransactionStore} to be used to access to the store redolog
     */
    TransactionStore createTransactionStore(String storeName);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy