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

com.lambdaworks.redis.output.ListScanResult Maven / Gradle / Ivy

package com.lambdaworks.redis.output;

import java.util.ArrayList;
import java.util.List;

public class ListScanResult {

    private Long pos;
    private List values = new ArrayList();
    
    public void setPos(Long pos) {
        this.pos = pos;
    }
    public Long getPos() {
        return pos;
    }
    
    public void addValue(V value) {
        values.add(value);
    }
    public List getValues() {
        return values;
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy