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

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

There is a newer version: 0.21.0
Show newest version
package io.axway.iron.spi.storage;

import java.io.*;
import java.math.BigInteger;
import java.util.concurrent.*;

public interface TransactionStore {
    OutputStream createTransactionOutput() throws IOException;

    void seekTransactionPoll(BigInteger latestProcessedTransactionId);

    TransactionInput pollNextTransaction(long timeout, TimeUnit unit);

    interface TransactionInput {
        InputStream getInputStream() throws IOException;

        BigInteger getTransactionId();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy