Uses of Interface
net.minecraft.network.protocol.Packet
Packages that use Packet
Package
Description
-
Uses of Packet in net.minecraft.client.multiplayer
Fields in net.minecraft.client.multiplayer declared as PacketModifier and TypeFieldDescriptionprivate final Packet<? extends ServerboundPacketListener> ClientCommonPacketListenerImpl.DeferredPacket.packetThe field for thepacketrecord component.Methods in net.minecraft.client.multiplayer that return PacketModifier and TypeMethodDescriptionPacket<? extends ServerboundPacketListener> ClientCommonPacketListenerImpl.DeferredPacket.packet()Returns the value of thepacketrecord component.Methods in net.minecraft.client.multiplayer with parameters of type PacketModifier and TypeMethodDescriptionvoidClientCommonPacketListenerImpl.onPacketError(Packet packet, Exception exception) voidvoidClientLevel.sendPacketToServer(Packet<?> packet) private voidClientCommonPacketListenerImpl.sendWhen(Packet<? extends ServerboundPacketListener> packet, BooleanSupplier sendCondition, Duration expirationTime) booleanClientCommonPacketListenerImpl.shouldHandleMessage(Packet<?> packet) ClientCommonPacketListenerImpl.storeDisconnectionReport(Packet packet, Throwable error) Constructors in net.minecraft.client.multiplayer with parameters of type PacketModifierConstructorDescription(package private)DeferredPacket(Packet<? extends ServerboundPacketListener> packet, BooleanSupplier sendCondition, long expirationTime) Creates an instance of aDeferredPacketrecord class. -
Uses of Packet in net.minecraft.client.multiplayer.prediction
Methods in net.minecraft.client.multiplayer.prediction that return Packet -
Uses of Packet in net.minecraft.network
Methods in net.minecraft.network that return PacketMethods in net.minecraft.network that return types with arguments of type PacketModifier and TypeMethodDescriptionStreamCodec<io.netty.buffer.ByteBuf, Packet<? super T>> ProtocolInfo.codec()Methods in net.minecraft.network with parameters of type PacketModifier and TypeMethodDescriptionprotected voidConnection.channelRead0(io.netty.channel.ChannelHandlerContext context, Packet<?> packet) protected voidPacketBundlePacker.decode(io.netty.channel.ChannelHandlerContext context, Packet<?> p_packet, List<Object> p_265368_) private voidConnection.doSendPacket(Packet<?> p_packet, PacketSendListener sendListener, boolean flush) protected voidPacketBundleUnpacker.encode(io.netty.channel.ChannelHandlerContext context, Packet<?> packet, List<Object> p_265735_) protected voidPacketEncoder.encode(io.netty.channel.ChannelHandlerContext p_130545_, Packet<T> p_130546_, io.netty.buffer.ByteBuf p_130547_) private static <T extends PacketListener>
voidConnection.genericsFtw(Packet<T> packet, PacketListener listener) static voidProtocolSwapHandler.handleInboundTerminalPacket(io.netty.channel.ChannelHandlerContext context, Packet<?> packet) static voidProtocolSwapHandler.handleOutboundTerminalPacket(io.netty.channel.ChannelHandlerContext context, Packet<?> packet) default voidPacketListener.onPacketError(Packet packet, Exception exception) voidvoidConnection.send(Packet<?> packet, PacketSendListener sendListener) voidConnection.send(Packet<?> packet, PacketSendListener listener, boolean flush) private voidConnection.sendPacket(Packet<?> packet, PacketSendListener sendListener, boolean flush) default booleanPacketListener.shouldHandleMessage(Packet<?> packet) private static voidPacketBundlePacker.verifyNonTerminalPacket(Packet<?> packet) Method parameters in net.minecraft.network with type arguments of type PacketModifier and TypeMethodDescriptionstatic PacketSendListenerPacketSendListener.exceptionallySend(Supplier<Packet<?>> exceptionalPacketSupplier) -
Uses of Packet in net.minecraft.network.protocol
Classes in net.minecraft.network.protocol with type parameters of type PacketModifier and TypeClassDescriptionfinal recordPacketType<T extends Packet<?>>(package private) static final recordProtocolInfoBuilder.CodecEntry<T extends PacketListener,P extends Packet<? super T>, B extends io.netty.buffer.ByteBuf> Classes in net.minecraft.network.protocol that implement PacketModifier and TypeClassDescriptionclassBundleDelimiterPacket<T extends PacketListener>classBundlePacket<T extends PacketListener>Fields in net.minecraft.network.protocol with type parameters of type PacketModifier and TypeFieldDescriptionprivate final StreamCodec<io.netty.buffer.ByteBuf, Packet<? super L>> ProtocolInfoBuilder.Implementation.codecThe field for thecodecrecord component.private final IdDispatchCodec.Builder<B, Packet<? super L>, PacketType<? extends Packet<? super L>>> ProtocolCodecBuilder.dispatchBuilderprivate final IdDispatchCodec.Builder<B, Packet<? super L>, PacketType<? extends Packet<? super L>>> ProtocolCodecBuilder.dispatchBuilderBundlePacket.packetsMethods in net.minecraft.network.protocol with type parameters of type PacketModifier and TypeMethodDescription<T extends Packet<? super L>>
ProtocolCodecBuilder<B, L> ProtocolCodecBuilder.add(PacketType<T> packetType, StreamCodec<? super B, T> codec) <P extends Packet<? super T>>
ProtocolInfoBuilder<T, B> ProtocolInfoBuilder.addPacket(PacketType<P> type, StreamCodec<? super B, P> serializer) static <B extends io.netty.buffer.ByteBuf,T extends Packet<?>>
StreamCodec<B, T> Packet.codec(StreamMemberEncoder<B, T> encoder, StreamDecoder<B, T> decoder) Methods in net.minecraft.network.protocol that return PacketMethods in net.minecraft.network.protocol that return types with arguments of type PacketModifier and TypeMethodDescriptionStreamCodec<B, Packet<? super L>> ProtocolCodecBuilder.build()(package private) StreamCodec<io.netty.buffer.ByteBuf, Packet<? super T>> ProtocolInfoBuilder.buildPacketCodec(Function<io.netty.buffer.ByteBuf, B> bufferFactory, List<ProtocolInfoBuilder.CodecEntry<T, ?, B>> codecs) StreamCodec<io.netty.buffer.ByteBuf, Packet<? super L>> ProtocolInfoBuilder.Implementation.codec()Returns the value of thecodecrecord component.BundlePacket.subPackets()PacketType<? extends Packet<T>> Packet.type()Methods in net.minecraft.network.protocol with parameters of type PacketModifier and TypeMethodDescriptionPacket<?> static <T extends PacketListener>
voidPacketUtils.ensureRunningOnSameThread(Packet<T> packet, T processor, ServerLevel level) Ensures that the given packet is handled on the main thread.static <T extends PacketListener>
voidPacketUtils.ensureRunningOnSameThread(Packet<T> packet, T processor, BlockableEventLoop<?> executor) Ensures that the given packet is handled on the main thread.static <T extends PacketListener>
voidPacketUtils.fillCrashReport(CrashReport crashReport, T packetListener, Packet<T> packet) static <T extends PacketListener>
ReportedExceptionPacketUtils.makeReportedException(Exception exception, Packet<T> packet, T packetListener) BundlerInfo.startPacketBundling(Packet<?> packet) voidBundlerInfo.unbundlePacket(Packet<?> packet, Consumer<Packet<?>> consumer) Deprecated.default voidBundlerInfo.unbundlePacket(Packet<?> packet, Consumer<Packet<?>> consumer, io.netty.channel.ChannelHandlerContext context) Unwrap and flattens a bundle packet.Method parameters in net.minecraft.network.protocol with type arguments of type PacketModifier and TypeMethodDescriptionstatic <T extends PacketListener,P extends BundlePacket<? super T>>
BundlerInfoBundlerInfo.createForPacket(PacketType<P> type, Function<Iterable<Packet<? super T>>, P> bundler, BundleDelimiterPacket<? super T> packet) voidBundlerInfo.unbundlePacket(Packet<?> packet, Consumer<Packet<?>> consumer) Deprecated.UseBundlerInfo.unbundlePacket(Packet, Consumer, io.netty.channel.ChannelHandlerContext)instead, as it supports packet filtering and is more efficient.default voidBundlerInfo.unbundlePacket(Packet<?> packet, Consumer<Packet<?>> consumer, io.netty.channel.ChannelHandlerContext context) Unwrap and flattens a bundle packet.<P extends BundlePacket<? super T>,D extends BundleDelimiterPacket<? super T>>
ProtocolInfoBuilder<T, B> ProtocolInfoBuilder.withBundlePacket(PacketType<P> type, Function<Iterable<Packet<? super T>>, P> bundler, D packet) Constructor parameters in net.minecraft.network.protocol with type arguments of type PacketModifierConstructorDescriptionprotectedBundlePacket(Iterable<Packet<? super T>> packets) (package private)Implementation(ConnectionProtocol id, PacketFlow flow, StreamCodec<io.netty.buffer.ByteBuf, Packet<? super L>> codec, BundlerInfo bundlerInfo) Creates an instance of aImplementationrecord class. -
Uses of Packet in net.minecraft.network.protocol.common
Classes in net.minecraft.network.protocol.common that implement PacketModifier and TypeClassDescriptionfinal recordfinal recordfinal recordclassclassfinal recordfinal recordfinal recordfinal recordfinal recordclassfinal recordfinal recordclassclassfinal recordMethods in net.minecraft.network.protocol.common with type parameters of type PacketModifier and TypeMethodDescriptionprivate static <T extends Packet<ClientCommonPacketListener>>
PacketType<T> CommonPacketTypes.createClientbound(String name) private static <T extends Packet<ServerCommonPacketListener>>
PacketType<T> CommonPacketTypes.createServerbound(String name) -
Uses of Packet in net.minecraft.network.protocol.configuration
Classes in net.minecraft.network.protocol.configuration that implement PacketModifier and TypeClassDescriptionclassfinal recordclassfinal recordfinal recordclassfinal recordMethods in net.minecraft.network.protocol.configuration with type parameters of type PacketModifier and TypeMethodDescriptionprivate static <T extends Packet<ClientConfigurationPacketListener>>
PacketType<T> ConfigurationPacketTypes.createClientbound(String name) private static <T extends Packet<ServerConfigurationPacketListener>>
PacketType<T> ConfigurationPacketTypes.createServerbound(String name) -
Uses of Packet in net.minecraft.network.protocol.cookie
Classes in net.minecraft.network.protocol.cookie that implement PacketModifier and TypeClassDescriptionfinal recordfinal recordMethods in net.minecraft.network.protocol.cookie with type parameters of type PacketModifier and TypeMethodDescriptionprivate static <T extends Packet<ClientCookiePacketListener>>
PacketType<T> CookiePacketTypes.createClientbound(String name) private static <T extends Packet<ServerCookiePacketListener>>
PacketType<T> CookiePacketTypes.createServerbound(String name) -
Uses of Packet in net.minecraft.network.protocol.game
Classes in net.minecraft.network.protocol.game that implement PacketModifier and TypeClassDescriptionclassclassclassfinal recordfinal recordclassclassclassTriggers a block event on the client.classclassclassclassclassfinal recordclassfinal recordclassclassfinal recordclassclassclassclassfinal recordfinal recordfinal recordfinal recordfinal recordfinal recordclassclassfinal recordclassclassfinal recordclassclassclassclassclassfinal recordfinal recordclassclassstatic classstatic classstatic classclassclassclassclassclassclassfinal recordclassclassfinal recordfinal recordclassclassclassclassclassclassfinal recordfinal recordfinal recordclassclassclassfinal recordfinal recordclassclassclassclassclassclassclassclassclassclassclassfinal recordclassclassclassclassclassclassclassclassfinal recordfinal recordfinal recordclassclassfinal recordclassclassclassclassfinal recordfinal recordclassclassclassfinal recordfinal recordclassclassclassclassclassclassclassfinal recordfinal recordfinal recordfinal recordfinal recordfinal recordclassclassclassfinal recordclassclassfinal recordfinal recordfinal recordclassclassclassclassclassstatic classstatic classstatic classstatic classclassclassclassclassclassclassclassclassclassclassclassclassclassfinal recordclassclassclassfinal recordclassclassclassclassclassclassclassMethods in net.minecraft.network.protocol.game with type parameters of type PacketModifier and TypeMethodDescriptionprivate static <T extends Packet<ClientGamePacketListener>>
PacketType<T> GamePacketTypes.createClientbound(String id) private static <T extends Packet<ServerGamePacketListener>>
PacketType<T> GamePacketTypes.createServerbound(String id) Methods in net.minecraft.network.protocol.game with parameters of type PacketModifier and TypeMethodDescriptiondefault voidServerPacketListener.onPacketError(Packet p_341685_, Exception p_341609_) Constructor parameters in net.minecraft.network.protocol.game with type arguments of type PacketModifierConstructorDescriptionClientboundBundlePacket(Iterable<Packet<? super ClientGamePacketListener>> p_265231_) -
Uses of Packet in net.minecraft.network.protocol.handshake
Classes in net.minecraft.network.protocol.handshake that implement PacketMethods in net.minecraft.network.protocol.handshake with type parameters of type PacketModifier and TypeMethodDescriptionprivate static <T extends Packet<ServerHandshakePacketListener>>
PacketType<T> HandshakePacketTypes.createServerbound(String name) -
Uses of Packet in net.minecraft.network.protocol.login
Classes in net.minecraft.network.protocol.login that implement PacketModifier and TypeClassDescriptionfinal recordfinal recordclassclassclassfinal recordfinal recordclassclassMethods in net.minecraft.network.protocol.login with type parameters of type PacketModifier and TypeMethodDescriptionprivate static <T extends Packet<ClientLoginPacketListener>>
PacketType<T> LoginPacketTypes.createClientbound(String name) private static <T extends Packet<ServerLoginPacketListener>>
PacketType<T> LoginPacketTypes.createServerbound(String name) -
Uses of Packet in net.minecraft.network.protocol.ping
Classes in net.minecraft.network.protocol.ping that implement PacketModifier and TypeClassDescriptionfinal recordclassMethods in net.minecraft.network.protocol.ping with type parameters of type PacketModifier and TypeMethodDescriptionprivate static <T extends Packet<ClientPongPacketListener>>
PacketType<T> PingPacketTypes.createClientbound(String name) private static <T extends Packet<ServerPingPacketListener>>
PacketType<T> PingPacketTypes.createServerbound(String name) -
Uses of Packet in net.minecraft.network.protocol.status
Classes in net.minecraft.network.protocol.status that implement PacketModifier and TypeClassDescriptionfinal recordclassMethods in net.minecraft.network.protocol.status with type parameters of type PacketModifier and TypeMethodDescriptionprivate static <T extends Packet<ClientStatusPacketListener>>
PacketType<T> StatusPacketTypes.createClientbound(String name) private static <T extends Packet<ServerStatusPacketListener>>
PacketType<T> StatusPacketTypes.createServerbound(String name) -
Uses of Packet in net.minecraft.server
Methods in net.minecraft.server that return types with arguments of type PacketModifier and TypeMethodDescriptionServerScoreboard.getStartTrackingPackets(Objective objective) ServerScoreboard.getStopTrackingPackets(Objective objective) -
Uses of Packet in net.minecraft.server.commands
Methods in net.minecraft.server.commands with parameters of type PacketModifier and TypeMethodDescriptionprivate static voidServerPackCommand.sendToAllConnections(CommandSourceStack source, Packet<?> packet) Method parameters in net.minecraft.server.commands with type arguments of type PacketModifier and TypeMethodDescriptionprivate static intTitleCommand.showTitle(CommandSourceStack source, Collection<ServerPlayer> targets, Component title, String titleType, Function<Component, Packet<?>> packetGetter) -
Uses of Packet in net.minecraft.server.level
Fields in net.minecraft.server.level with type parameters of type PacketMethods in net.minecraft.server.level with parameters of type PacketModifier and TypeMethodDescriptionprivate voidChunkHolder.broadcast(List<ServerPlayer> players, Packet<?> packet) voidvoidvoidprotected voidChunkMap.broadcastAndSend(Entity entity, Packet<?> packet) voidChunkMap.TrackedEntity.broadcastAndSend(Packet<?> packet) voidServerChunkCache.broadcastAndSend(Entity entity, Packet<?> packet) private voidServerEntity.broadcastAndSend(Packet<?> packet) private booleanServerLevel.sendParticles(ServerPlayer player, boolean longDistance, double posX, double posY, double posZ, Packet<?> packet) Constructor parameters in net.minecraft.server.level with type arguments of type PacketModifierConstructorDescriptionServerEntity(ServerLevel level, Entity entity, int updateInterval, boolean trackDelta, Consumer<Packet<?>> broadcast) -
Uses of Packet in net.minecraft.server.network
Methods in net.minecraft.server.network with parameters of type PacketModifier and TypeMethodDescriptionvoidvoidServerCommonPacketListenerImpl.send(Packet<?> packet, PacketSendListener listener) voidbooleanServerGamePacketListenerImpl.shouldHandleMessage(Packet<?> packet) Method parameters in net.minecraft.server.network with type arguments of type Packet -
Uses of Packet in net.minecraft.server.network.config
Method parameters in net.minecraft.server.network.config with type arguments of type PacketModifier and TypeMethodDescriptionvoidSynchronizeRegistriesTask.handleResponse(List<KnownPack> packs, Consumer<Packet<?>> packetSender) private voidSynchronizeRegistriesTask.sendRegistries(Consumer<Packet<?>> packetSender, Set<KnownPack> packs) voidvoidvoid -
Uses of Packet in net.minecraft.server.players
Methods in net.minecraft.server.players with parameters of type PacketModifier and TypeMethodDescriptionvoidPlayerList.broadcast(Player except, double x, double y, double z, double radius, ResourceKey<Level> dimension, Packet<?> packet) voidPlayerList.broadcastAll(Packet<?> packet) voidPlayerList.broadcastAll(Packet<?> packet, ResourceKey<Level> dimension) -
Uses of Packet in net.minecraft.world.entity
Methods in net.minecraft.world.entity that return PacketModifier and TypeMethodDescriptionEntity.getAddEntityPacket(ServerEntity entity) ExperienceOrb.getAddEntityPacket(ServerEntity entity) Marker.getAddEntityPacket(ServerEntity p_352275_) -
Uses of Packet in net.minecraft.world.entity.boss
Methods in net.minecraft.world.entity.boss that return Packet -
Uses of Packet in net.minecraft.world.entity.decoration
Methods in net.minecraft.world.entity.decoration that return PacketModifier and TypeMethodDescriptionItemFrame.getAddEntityPacket(ServerEntity entity) LeashFenceKnotEntity.getAddEntityPacket(ServerEntity entity) Painting.getAddEntityPacket(ServerEntity entity) -
Uses of Packet in net.minecraft.world.entity.item
Methods in net.minecraft.world.entity.item that return Packet -
Uses of Packet in net.minecraft.world.entity.monster.warden
Methods in net.minecraft.world.entity.monster.warden that return Packet -
Uses of Packet in net.minecraft.world.entity.projectile
Methods in net.minecraft.world.entity.projectile that return PacketModifier and TypeMethodDescriptionAbstractHurtingProjectile.getAddEntityPacket(ServerEntity p_entity) FishingHook.getAddEntityPacket(ServerEntity p_entity) Projectile.getAddEntityPacket(ServerEntity p_entity) -
Uses of Packet in net.minecraft.world.item
Methods in net.minecraft.world.item that return PacketModifier and TypeMethodDescriptionPacket<?> ComplexItem.getUpdatePacket(ItemStack stack, Level level, Player player) Packet<?> MapItem.getUpdatePacket(ItemStack stack, Level level, Player player) -
Uses of Packet in net.minecraft.world.level
Methods in net.minecraft.world.level with parameters of type Packet -
Uses of Packet in net.minecraft.world.level.block.entity
Methods in net.minecraft.world.level.block.entity that return Packet -
Uses of Packet in net.minecraft.world.level.block.entity.vault
Methods in net.minecraft.world.level.block.entity.vault that return Packet -
Uses of Packet in net.minecraft.world.level.saveddata.maps
Methods in net.minecraft.world.level.saveddata.maps that return PacketModifier and TypeMethodDescriptionPacket<?> MapItemSavedData.getUpdatePacket(MapId mapId, Player player) (package private) Packet<?> MapItemSavedData.HoldingPlayer.nextUpdatePacket(MapId mapId) -
Uses of Packet in net.neoforged.neoforge.common.extensions
Methods in net.neoforged.neoforge.common.extensions with parameters of type PacketModifier and TypeMethodDescriptionvoidSends a packet to the target of this listener.voidIServerCommonPacketListenerExtension.send(Packet<?> packet, @Nullable PacketSendListener listener) Sends a packet to the client of this listener. -
Uses of Packet in net.neoforged.neoforge.common.util
Methods in net.neoforged.neoforge.common.util with parameters of type PacketModifier and TypeMethodDescriptionvoidvoidFakePlayer.FakePlayerNetHandler.send(Packet<?> packet, @Nullable PacketSendListener sendListener) -
Uses of Packet in net.neoforged.neoforge.common.world
Methods in net.neoforged.neoforge.common.world that return PacketModifier and TypeMethodDescriptionPacket<?> LevelChunkAuxiliaryLightManager.sendLightDataTo(ClientboundLevelChunkWithLightPacket chunkPacket) -
Uses of Packet in net.neoforged.neoforge.entity
Methods in net.neoforged.neoforge.entity that return Packet -
Uses of Packet in net.neoforged.neoforge.network
Methods in net.neoforged.neoforge.network that return PacketModifier and TypeMethodDescriptionprivate static Packet<?> PacketDistributor.makeClientboundPacket(CustomPacketPayload payload, CustomPacketPayload... payloads) -
Uses of Packet in net.neoforged.neoforge.network.bundle
Fields in net.neoforged.neoforge.network.bundle with type parameters of type PacketMethods in net.neoforged.neoforge.network.bundle that return types with arguments of type PacketMethods in net.neoforged.neoforge.network.bundle with parameters of type PacketModifier and TypeMethodDescriptionMethod parameters in net.neoforged.neoforge.network.bundle with type arguments of type PacketConstructor parameters in net.neoforged.neoforge.network.bundle with type arguments of type Packet -
Uses of Packet in net.neoforged.neoforge.network.configuration
Method parameters in net.neoforged.neoforge.network.configuration with type arguments of type Packet -
Uses of Packet in net.neoforged.neoforge.network.filters
Fields in net.neoforged.neoforge.network.filters with type parameters of type PacketModifier and TypeFieldDescriptionVanillaPacketFilter.handlersVanillaPacketFilter.handlersVanillaPacketFilter.handlersMethods in net.neoforged.neoforge.network.filters with type parameters of type PacketModifier and TypeMethodDescriptionprotected static <T extends Packet<?>>
Map.Entry<Class<? extends Packet<?>>, BiConsumer<Packet<?>, List<? super Packet<?>>>> Helper function for building the handler map.protected static <T extends Packet<?>>
Map.Entry<Class<? extends Packet<?>>, BiConsumer<Packet<?>, List<? super Packet<?>>>> Helper function for building the handler map.Methods in net.neoforged.neoforge.network.filters that return PacketModifier and TypeMethodDescriptionprivate static Packet<?> GenericPacketSplitter.createPacket(PacketFlow flow, byte[] payload) Methods in net.neoforged.neoforge.network.filters that return types with arguments of type PacketModifier and TypeMethodDescriptionprotected static <T extends Packet<?>>
Map.Entry<Class<? extends Packet<?>>, BiConsumer<Packet<?>, List<? super Packet<?>>>> Helper function for building the handler map.protected static <T extends Packet<?>>
Map.Entry<Class<? extends Packet<?>>, BiConsumer<Packet<?>, List<? super Packet<?>>>> Helper function for building the handler map.protected static <T extends Packet<?>>
Map.Entry<Class<? extends Packet<?>>, BiConsumer<Packet<?>, List<? super Packet<?>>>> Helper function for building the handler map.protected static <T extends Packet<?>>
Map.Entry<Class<? extends Packet<?>>, BiConsumer<Packet<?>, List<? super Packet<?>>>> Helper function for building the handler map.protected static <T extends Packet<?>>
Map.Entry<Class<? extends Packet<?>>, BiConsumer<Packet<?>, List<? super Packet<?>>>> Helper function for building the handler map.protected static <T extends Packet<?>>
Map.Entry<Class<? extends Packet<?>>, BiConsumer<Packet<?>, List<? super Packet<?>>>> Helper function for building the handler map.Methods in net.neoforged.neoforge.network.filters with parameters of type PacketModifier and TypeMethodDescriptionprotected voidGenericPacketSplitter.encode(io.netty.channel.ChannelHandlerContext ctx, Packet<?> packet, List<Object> out) protected voidVanillaPacketFilter.encode(io.netty.channel.ChannelHandlerContext ctx, Packet<?> msg, List<Object> out) Method parameters in net.neoforged.neoforge.network.filters with type arguments of type PacketModifier and TypeMethodDescriptionprotected static <T extends Packet<?>>
Map.Entry<Class<? extends Packet<?>>, BiConsumer<Packet<?>, List<? super Packet<?>>>> Helper function for building the handler map.protected static <T extends Packet<?>>
Map.Entry<Class<? extends Packet<?>>, BiConsumer<Packet<?>, List<? super Packet<?>>>> Helper function for building the handler map.protected static <T extends Packet<?>>
Map.Entry<Class<? extends Packet<?>>, BiConsumer<Packet<?>, List<? super Packet<?>>>> Helper function for building the handler map.Constructor parameters in net.neoforged.neoforge.network.filters with type arguments of type PacketModifierConstructorDescriptionprotectedVanillaPacketFilter(Map<Class<? extends Packet<?>>, BiConsumer<Packet<?>, List<? super Packet<?>>>> handlers) protectedVanillaPacketFilter(Map<Class<? extends Packet<?>>, BiConsumer<Packet<?>, List<? super Packet<?>>>> handlers) protectedVanillaPacketFilter(Map<Class<? extends Packet<?>>, BiConsumer<Packet<?>, List<? super Packet<?>>>> handlers) -
Uses of Packet in net.neoforged.neoforge.network.handling
Methods in net.neoforged.neoforge.network.handling with parameters of type Packet -
Uses of Packet in net.neoforged.neoforge.network.registration
Methods in net.neoforged.neoforge.network.registration that return types with arguments of type PacketModifier and TypeMethodDescriptionstatic <T extends PacketListener>
List<Packet<?>> NetworkRegistry.filterGameBundlePackets(io.netty.channel.ChannelHandlerContext context, Iterable<Packet<? super T>> packets) Filters the given packets for a bundle packet in the game phase of the connection.Methods in net.neoforged.neoforge.network.registration with parameters of type PacketModifier and TypeMethodDescriptionstatic voidNetworkRegistry.checkPacket(Packet<?> packet, ClientCommonPacketListener listener) Validates that aServerboundCustomPayloadPacketmay be sent to the server.static voidNetworkRegistry.checkPacket(Packet<?> packet, ServerCommonPacketListener listener) Validates that aClientboundCustomPayloadPacketmay be sent to the client.static <T extends PacketListener>
voidNetworkRegistry.handlePacketUnchecked(Packet<T> packet, PacketListener listener) Method parameters in net.neoforged.neoforge.network.registration with type arguments of type PacketModifier and TypeMethodDescriptionstatic <T extends PacketListener>
List<Packet<?>> NetworkRegistry.filterGameBundlePackets(io.netty.channel.ChannelHandlerContext context, Iterable<Packet<? super T>> packets) Filters the given packets for a bundle packet in the game phase of the connection.
BundlerInfo.unbundlePacket(Packet, Consumer, io.netty.channel.ChannelHandlerContext)instead, as it supports packet filtering and is more efficient.