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

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

There is a newer version: 3.17.5
Show newest version
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