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

io.quarkus.redis.datasource.stream.StreamEntry Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.redis.datasource.stream;

public class StreamEntry {

    public final String id;

    public final T content;

    public StreamEntry(String id, T content) {
        this.id = id;
        this.content = content;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy