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

org.yamcs.parameterarchive.ParametersValueRequest Maven / Gradle / Ivy

There is a newer version: 5.10.9
Show newest version
package org.yamcs.parameterarchive;

public class ParametersValueRequest {
    long start, stop;
    int[] parameterIds;
    boolean ascending;
    ValueConsumer consumer;
    
    public ParametersValueRequest(long start, long stop, int[] parameterIds, boolean ascending, ValueConsumer consumer) {
        super();
        this.start = start;
        this.stop = stop;
        this.parameterIds = parameterIds;
        this.ascending = ascending;
        this.consumer = consumer;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy