Package net.minecraft.server.network
Class ServerQueryNetworkHandler
java.lang.Object
net.minecraft.server.network.ServerQueryNetworkHandler
- All Implemented Interfaces:
PacketListener
,ServerCrashSafePacketListener
,ServerPacketListener
,ServerQueryPacketListener
,ServerQueryPingPacketListener
- Mappings:
Namespace Name official aog
intermediary net/minecraft/class_3251
named net/minecraft/server/network/ServerQueryNetworkHandler
-
Field Summary
Modifier and TypeFieldDescriptionprivate final ClientConnection
private final ServerMetadata
private static final Text
private boolean
-
Constructor Summary
ConstructorDescriptionServerQueryNetworkHandler
(ServerMetadata metadata, ClientConnection connection) -
Method Summary
Modifier and TypeMethodDescriptionboolean
void
onDisconnected
(Text reason) Called when the connection this listener listens to has disconnected.void
onQueryPing
(QueryPingC2SPacket packet) Handles a packet from client to query the "ping" (connection latency).void
onRequest
(QueryRequestC2SPacket packet) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.minecraft.network.listener.PacketListener
accepts, addCustomCrashReportInfo, fillCrashReport
Methods inherited from interface net.minecraft.network.listener.ServerCrashSafePacketListener
shouldCrashOnException
Methods inherited from interface net.minecraft.network.listener.ServerPacketListener
getSide
Methods inherited from interface net.minecraft.network.listener.ServerQueryPacketListener
getState
-
Field Details
-
REQUEST_HANDLED
- Mappings:
Namespace Name Mixin selector official a
Laog;a:Lvf;
intermediary field_14179
Lnet/minecraft/class_3251;field_14179:Lnet/minecraft/class_2561;
named REQUEST_HANDLED
Lnet/minecraft/server/network/ServerQueryNetworkHandler;REQUEST_HANDLED:Lnet/minecraft/text/Text;
-
metadata
- Mappings:
Namespace Name Mixin selector official b
Laog;b:Lagh;
intermediary field_42544
Lnet/minecraft/class_3251;field_42544:Lnet/minecraft/class_2926;
named metadata
Lnet/minecraft/server/network/ServerQueryNetworkHandler;metadata:Lnet/minecraft/server/ServerMetadata;
-
connection
- Mappings:
Namespace Name Mixin selector official c
Laog;c:Lug;
intermediary field_14178
Lnet/minecraft/class_3251;field_14178:Lnet/minecraft/class_2535;
named connection
Lnet/minecraft/server/network/ServerQueryNetworkHandler;connection:Lnet/minecraft/network/ClientConnection;
-
responseSent
private boolean responseSent- Mappings:
Namespace Name Mixin selector official d
Laog;d:Z
intermediary field_14177
Lnet/minecraft/class_3251;field_14177:Z
named responseSent
Lnet/minecraft/server/network/ServerQueryNetworkHandler;responseSent:Z
-
-
Constructor Details
-
ServerQueryNetworkHandler
- Mappings:
Namespace Name Mixin selector official <init>
Laog;<init>(Lagh;Lug;)V
intermediary <init>
Lnet/minecraft/class_3251;<init>(Lnet/minecraft/class_2926;Lnet/minecraft/class_2535;)V
named <init>
Lnet/minecraft/server/network/ServerQueryNetworkHandler;<init>(Lnet/minecraft/server/ServerMetadata;Lnet/minecraft/network/ClientConnection;)V
-
-
Method Details
-
onDisconnected
Called when the connection this listener listens to has disconnected. Can be used to display the disconnection reason.- Specified by:
onDisconnected
in interfacePacketListener
- Parameters:
reason
- the reason of disconnection; may be a generic message- Mappings:
Namespace Name Mixin selector official a
Luo;a(Lvf;)V
intermediary method_10839
Lnet/minecraft/class_2547;method_10839(Lnet/minecraft/class_2561;)V
named onDisconnected
Lnet/minecraft/network/listener/PacketListener;onDisconnected(Lnet/minecraft/text/Text;)V
-
isConnectionOpen
public boolean isConnectionOpen()- Specified by:
isConnectionOpen
in interfacePacketListener
- Mappings:
Namespace Name Mixin selector official c
Luo;c()Z
intermediary method_48106
Lnet/minecraft/class_2547;method_48106()Z
named isConnectionOpen
Lnet/minecraft/network/listener/PacketListener;isConnectionOpen()Z
-
onRequest
- Specified by:
onRequest
in interfaceServerQueryPacketListener
- Mappings:
Namespace Name Mixin selector official a
Lagi;a(Lagk;)V
intermediary method_12698
Lnet/minecraft/class_2933;method_12698(Lnet/minecraft/class_2937;)V
named onRequest
Lnet/minecraft/network/listener/ServerQueryPacketListener;onRequest(Lnet/minecraft/network/packet/c2s/query/QueryRequestC2SPacket;)V
-
onQueryPing
Handles a packet from client to query the "ping" (connection latency). This is different fromCommonPingS2CPacket
, which can be sent by the server to request acknowledgment.- Specified by:
onQueryPing
in interfaceServerQueryPingPacketListener
- Mappings:
Namespace Name Mixin selector official a
Ladl;a(Lagj;)V
intermediary method_12697
Lnet/minecraft/class_8740;method_12697(Lnet/minecraft/class_2935;)V
named onQueryPing
Lnet/minecraft/network/listener/ServerQueryPingPacketListener;onQueryPing(Lnet/minecraft/network/packet/c2s/query/QueryPingC2SPacket;)V
-