Interface PacketContext


public interface PacketContext
  • Method Details

    • applyProvider

      PacketProvider applyProvider()
      This method is used to assign a value to the PacketProvider field which manages sent packets for disguised
    • registerProvider

      void registerProvider(Class<? extends PacketProvider> providerClass, boolean replace)
      This method registers the given provider, which will be instantiated once the applyProvider() is called if the versions match.

      If the replace boolean is true, this version will replace any other class that matches the provided version of this one. By default, the value is true.

      Parameters:
      providerClass - the class of the provider
      replace - whether we should replace any other classes with this noe
      Throws:
      IllegalArgumentException - if the class doesn't have a PacketHandler annotation
    • registerProvider

      void registerProvider(Class<? extends PacketProvider> providerClass)
      This method registers the given provider.
      Parameters:
      providerClass - the given provider
      Throws:
      IllegalArgumentException - if the class doesn't have a PacketHandler annotation
    • getProvider

      PacketProvider getProvider()
      This method returns the current provider.
      Returns:
      the provider
    • getRegisteredProviders

      Set<Class<? extends PacketProvider>> getRegisteredProviders()
      Returns a Set of registered providers.
      Returns:
      set of registered providers