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

io.descoped.dc.api.content.ContentStreamConsumer Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package io.descoped.dc.api.content;

import java.util.concurrent.TimeUnit;

public interface ContentStreamConsumer extends AutoCloseable {

    String topic();

    ContentStreamBuffer receive(int timeout, TimeUnit unit) throws InterruptedException, ClosedContentStreamException;

    void seek(long timestamp);

    boolean isClosed();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy