See: Description
Interface | Description |
---|---|
AsynchronousManager |
Represents a asynchronous packet handler.
|
CommandFilter.FilterFailedHandler | |
PacketStream |
Represents a object capable of sending or receiving packets.
|
ProtocolManager |
Represents an API for accessing the Minecraft protocol.
|
Class | Description |
---|---|
Application |
Ignore this class.
|
CommandFilter |
A command to apply JavaScript filtering to the packet command.
|
CommandFilter.Filter |
A filter that will be used to process a packet event.
|
Packets | Deprecated |
Packets.Client | Deprecated |
Packets.Server | Deprecated |
PacketType |
Represents the type of a packet in a specific protocol.
|
PacketType.Handshake |
Packets sent during handshake.
|
PacketType.Handshake.Client |
Incoming packets.
|
PacketType.Handshake.Server |
An empty enum, as the server will not send any packets in this protocol.
|
PacketType.Legacy |
Contains every packet Minecraft 1.6.4 packet removed in Minecraft 1.7.2.
|
PacketType.Legacy.Client |
Incoming packets.
|
PacketType.Legacy.Server |
Outgoing packets.
|
PacketType.Login |
Packets sent and received when logging in to the server.
|
PacketType.Login.Client |
Incoming packets.
|
PacketType.Login.Server |
Outgoing packets.
|
PacketType.Play |
Packets sent and received when logged into the game.
|
PacketType.Play.Client |
Incoming packets.
|
PacketType.Play.Server |
Outgoing packets.
|
PacketType.Status |
Packets sent and received when querying the server in the multiplayer menu.
|
PacketType.Status.Client |
Incoming packets.
|
PacketType.Status.Server |
Outgoing packets.
|
ProtocolConfig |
Represents the configuration of ProtocolLib.
|
ProtocolLibrary |
The main entry point for ProtocolLib.
|
Enum | Description |
---|---|
PacketType.Protocol |
Represents the different protocol or connection states.
|
PacketType.Sender |
Represents the sender of this packet type.
|
This allows plugins to reliably and easily read and modify the packet stream of any CraftBukkit-derivative (or specifically compatible) Minecraft-server.
This manager can be retrieved throught a static method in ProtocolLibrary:
ProtocolManager manager = ProtocolLibrary.getProtocolManager();