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

org.rx.net.transport.protocol.PingPacket Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy