![JAR search and dependency download from the Maven repository](/logo.png)
net.sf.jrtps.message.parameter.MetatrafficUnicastIPAddress Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jrtps Show documentation
Show all versions of jrtps Show documentation
jRTPS - An implementation of RTPS protocol by OMG
package net.sf.jrtps.message.parameter;
import net.sf.jrtps.transport.RTPSByteBuffer;
public class MetatrafficUnicastIPAddress extends Parameter {
MetatrafficUnicastIPAddress() {
super(ParameterEnum.PID_METATRAFFIC_UNICAST_IPADDRESS);
}
@Override
public void read(RTPSByteBuffer bb, int length) {
readBytes(bb, length); // TODO: default reading. just reads to byte[] in
// super class.
}
@Override
public void writeTo(RTPSByteBuffer bb) {
writeBytes(bb); // TODO: default writing. just writes byte[] in super
// class
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy