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

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

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

import org.yamcs.protobuf.Pvalue.ParameterStatus;
import org.yamcs.parameter.Value;

public class TimedValue {
    final long instant;
    final Value engValue;
    final Value rawValue;
    final ParameterStatus paramStatus;
    
    public TimedValue(long instant, Value engValue, Value rawValue, ParameterStatus paramStatus) {
        this.instant = instant;
        this.engValue = engValue;
        this.rawValue = rawValue;
        this.paramStatus = paramStatus;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy