![JAR search and dependency download from the Maven repository](/logo.png)
net.sf.jrtps.transport.udp.ReceiverConfig 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.transport.udp;
import java.net.DatagramSocket;
/**
* Package access. This class represents a struct, that holds UDP DatagramSocket created,
* along with participantId which may have been generated during creation.
*
* @author mcr70
*/
class ReceiverConfig {
final DatagramSocket ds;
final int participantId;
final boolean discovery;
public ReceiverConfig(int participantId, DatagramSocket ds, boolean discovery) {
this.participantId = participantId;
this.ds = ds;
this.discovery = discovery;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy