Uses of Class
net.minecraft.network.ClientConnection
Packages that use ClientConnection
Package
Description
-
Uses of ClientConnection in net.minecraft.client
Fields in net.minecraft.client declared as ClientConnectionModifier and TypeFieldDescriptionprivate @Nullable ClientConnection
MinecraftClient.integratedServerConnection
The client connection to the integrated server. -
Uses of ClientConnection in net.minecraft.client.gui.screen
Fields in net.minecraft.client.gui.screen declared as ClientConnectionModifier and TypeFieldDescription(package private) @Nullable ClientConnection
ConnectScreen.connection
The client connection to the remote server. -
Uses of ClientConnection in net.minecraft.client.network
Fields in net.minecraft.client.network declared as ClientConnectionModifier and TypeFieldDescriptionprivate ClientConnection
ClientLoginNetworkHandler.connection
private ClientConnection
ClientPlayNetworkHandler.connection
Fields in net.minecraft.client.network with type parameters of type ClientConnectionModifier and TypeFieldDescriptionprivate List<ClientConnection>
MultiplayerServerListPinger.clientConnections
Methods in net.minecraft.client.network that return ClientConnectionModifier and TypeMethodDescriptionClientLoginNetworkHandler.getConnection()
Returns the connection this packet listener intends to listen to.ClientPlayNetworkHandler.getConnection()
Returns the connection this packet listener intends to listen to.Constructors in net.minecraft.client.network with parameters of type ClientConnectionModifierConstructorDescriptionClientLoginNetworkHandler(ClientConnection connection, MinecraftClient client, @Nullable Screen parentGui, Consumer<Text> statusConsumer)
ClientPlayNetworkHandler(MinecraftClient client, Screen screen, ClientConnection connection, com.mojang.authlib.GameProfile profile)
-
Uses of ClientConnection in net.minecraft.client.realms
Fields in net.minecraft.client.realms declared as ClientConnection -
Uses of ClientConnection in net.minecraft.network
Subclasses of ClientConnection in net.minecraft.networkModifier and TypeClassDescriptionclass
A connection that disconnects from the backing netty channel if too many packets are received.Methods in net.minecraft.network that return ClientConnectionModifier and TypeMethodDescriptionstatic ClientConnection
ClientConnection.connect(InetSocketAddress address, boolean useEpoll)
static ClientConnection
ClientConnection.connectLocal(SocketAddress address)
-
Uses of ClientConnection in net.minecraft.network.listener
Methods in net.minecraft.network.listener that return ClientConnectionModifier and TypeMethodDescriptionPacketListener.getConnection()
Returns the connection this packet listener intends to listen to. -
Uses of ClientConnection in net.minecraft.server
Fields in net.minecraft.server with type parameters of type ClientConnectionModifier and TypeFieldDescription(package private) List<ClientConnection>
ServerNetworkIo.connections
Methods in net.minecraft.server with parameters of type ClientConnectionModifier and TypeMethodDescriptionvoid
PlayerManager.onPlayerConnect(ClientConnection connection, ServerPlayerEntity player)
-
Uses of ClientConnection in net.minecraft.server.network
Fields in net.minecraft.server.network declared as ClientConnectionModifier and TypeFieldDescriptionprivate ClientConnection
LocalServerHandshakeNetworkHandler.connection
private ClientConnection
ServerHandshakeNetworkHandler.connection
ServerLoginNetworkHandler.connection
ServerPlayNetworkHandler.connection
private ClientConnection
ServerQueryNetworkHandler.connection
Methods in net.minecraft.server.network that return ClientConnectionModifier and TypeMethodDescriptionLocalServerHandshakeNetworkHandler.getConnection()
Returns the connection this packet listener intends to listen to.ServerHandshakeNetworkHandler.getConnection()
Returns the connection this packet listener intends to listen to.ServerLoginNetworkHandler.getConnection()
Returns the connection this packet listener intends to listen to.ServerPlayNetworkHandler.getConnection()
Returns the connection this packet listener intends to listen to.ServerQueryNetworkHandler.getConnection()
Returns the connection this packet listener intends to listen to.Constructors in net.minecraft.server.network with parameters of type ClientConnectionModifierConstructorDescriptionLocalServerHandshakeNetworkHandler(MinecraftServer server, ClientConnection connection)
ServerHandshakeNetworkHandler(MinecraftServer server, ClientConnection connection)
ServerLoginNetworkHandler(MinecraftServer server, ClientConnection connection)
ServerPlayNetworkHandler(MinecraftServer server, ClientConnection connection, ServerPlayerEntity player)
ServerQueryNetworkHandler(MinecraftServer server, ClientConnection connection)