io.quarkus.redis.datasource.stream.ClaimedMessages Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-redis-client Show documentation
Show all versions of quarkus-redis-client Show documentation
Connect to Redis in either imperative or reactive style
package io.quarkus.redis.datasource.stream;
import java.util.List;
/**
* Represents claimed messages
*
* @param the type of the key
* @param the field type for the payload
* @param the value type for the payload
*/
public class ClaimedMessages {
private final String id;
private final List> messages;
public ClaimedMessages(String id, List> messages) {
this.id = id;
this.messages = messages;
}
public String getId() {
return this.id;
}
public List> getMessages() {
return this.messages;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy