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

net.sf.jrtps.message.parameter.CoherentSet Maven / Gradle / Ivy

package net.sf.jrtps.message.parameter;

import net.sf.jrtps.transport.RTPSByteBuffer;

public class CoherentSet extends Parameter implements InlineParameter {
    CoherentSet() {
        super(ParameterEnum.PID_COHERENT_SET);
    }

    @Override
    public void read(RTPSByteBuffer bb, int length) {
        readBytes(bb, length); 
    }

    @Override
    public void writeTo(RTPSByteBuffer bb) {
        writeBytes(bb);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy