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

com.qmetric.feed.consumer.store.ConsumedStore Maven / Gradle / Ivy

package com.qmetric.feed.consumer.store;

import com.theoryinpractise.halbuilder.api.ReadableRepresentation;

public interface ConsumedStore
{
    void checkConnectivity() throws ConnectivityException;

    void markAsConsuming(final ReadableRepresentation feedEntry) throws AlreadyConsumingException;

    void revertConsuming(final ReadableRepresentation feedEntry);

    void markAsConsumed(ReadableRepresentation feedEntry);

    boolean notAlreadyConsumed(ReadableRepresentation feedEntry);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy