de.ruedigermoeller.fastcast.packeting.ControlPacket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fast-cast Show documentation
Show all versions of fast-cast Show documentation
a fast brokerless messaging library based on reliable UDP multicast
package de.ruedigermoeller.fastcast.packeting;
/**
* Created with IntelliJ IDEA.
* User: ruedi
* Date: 15.08.13
* Time: 01:30
* To change this template use File | Settings | File Templates.
*/
public class ControlPacket extends Packet {
public static short DROPPED = 0;
protected short type;
public short getType() {
return type;
}
public void setType(short type) {
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy