24 lines
748 B
Java
24 lines
748 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package net.minecraft.util.profiling.jfr.event;
|
|
|
|
import java.net.SocketAddress;
|
|
import jdk.jfr.EventType;
|
|
import jdk.jfr.Label;
|
|
import jdk.jfr.Name;
|
|
import net.minecraft.util.profiling.jfr.event.PacketEvent;
|
|
|
|
@Name(value="minecraft.PacketSent")
|
|
@Label(value="Network Packet Sent")
|
|
public class PacketSentEvent
|
|
extends PacketEvent {
|
|
public static final String NAME = "minecraft.PacketSent";
|
|
public static final EventType TYPE = EventType.getEventType(PacketSentEvent.class);
|
|
|
|
public PacketSentEvent(String protocolId, String packetDirection, String packetId, SocketAddress remoteAddress, int writtenBytes) {
|
|
super(protocolId, packetDirection, packetId, remoteAddress, writtenBytes);
|
|
}
|
|
}
|
|
|