Class PlayerPacketOutEvent

java.lang.Object
net.minestom.server.event.player.PlayerPacketOutEvent
All Implemented Interfaces:
Event, CancellableEvent, EntityEvent, PlayerEvent

@Experimental public class PlayerPacketOutEvent extends Object implements PlayerEvent, CancellableEvent
Listen to outgoing packets asynchronously.

Currently, do not support viewable packets.

  • Constructor Details

  • Method Details

    • getPlayer

      @NotNull public @NotNull Player getPlayer()
      Description copied from interface: PlayerEvent
      Gets the player.
      Specified by:
      getPlayer in interface PlayerEvent
      Returns:
      the player
    • getPacket

      @NotNull public @NotNull ServerPacket getPacket()
    • isCancelled

      public boolean isCancelled()
      Description copied from interface: CancellableEvent
      Gets if the Event should be cancelled or not.
      Specified by:
      isCancelled in interface CancellableEvent
      Returns:
      true if the event should be cancelled
    • setCancelled

      public void setCancelled(boolean cancel)
      Description copied from interface: CancellableEvent
      Marks the Event as cancelled or not.
      Specified by:
      setCancelled in interface CancellableEvent
      Parameters:
      cancel - true if the event should be cancelled, false otherwise