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

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

The newest version!
package io.descoped.dc.api.content;

public interface ContentStream extends AutoCloseable {

    String lastPosition(String topic);

    ContentStreamBuffer lastMessage(String topic);

    ContentStreamProducer producer(String topic);

    default ContentStreamConsumer consumer(String topic) {
        return consumer(topic, null);
    }

    ContentStreamConsumer consumer(String topic, ContentStreamCursor cursor);

    void closeAndRemoveProducer(String topic);

    void closeAndRemoveConsumer(String topic);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy