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

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

package net.sf.jrtps.message.parameter;

import net.sf.jrtps.transport.RTPSByteBuffer;

public class MulticastIPAddress extends Parameter {
    MulticastIPAddress() {
        super(ParameterId.PID_MULTICAST_IPADDRESS);
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy