org.rx.net.transport.protocol.PingPacket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxlib Show documentation
Show all versions of rxlib Show documentation
A set of utilities for Java
package org.rx.net.transport.protocol;
import lombok.Getter;
import org.rx.core.NtpClock;
import java.io.Serializable;
@Getter
public class PingPacket implements Serializable {
private static final long serialVersionUID = 7964552443367680011L;
final long timestamp = NtpClock.UTC.millis();
}