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

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

There is a newer version: 5.10.9
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 - toBinaryTransformAlgorithm
 * 
 * @author nm
 *
 */
public interface DataEncoder extends AlgorithmExecutor {
    /**
     * Encode the raw value into the buffer.
     * 

* The offset inside the buffer shall be moved to the end of the parameter * * @param de * the data encoding definition of which this algorithm is part of * @param rawValue * raw value to be encoded * @param buffer * buffer in which the value should be encoded * @param ctx * TC processing context */ void encodeRaw(DataEncoding de, Value rawValue, BitBuffer buffer, TcProcessingContext ctx); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy