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

org.yamcs.mdb.DataDecoder Maven / Gradle / Ivy

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

import org.yamcs.algorithms.AlgorithmExecutor;
import org.yamcs.parameter.Value;
import org.yamcs.utils.BitBuffer;
import org.yamcs.xtce.DataEncoding;

/**
 * Interface to be implemented by the custom XTCE DataEncoding decoders - fromBinaryTransformAlgorithm
 * 
 */
public interface DataDecoder extends AlgorithmExecutor {
    /**
     * Extracts the raw value from the buffer. The offset inside the buffer shall be moved to the end of the parameter
     * 
     */
    Value extractRaw(DataEncoding de, ContainerProcessingContext pcontext, BitBuffer buffer);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy