Interface RenderRegistration

All Superinterfaces:
AutoCloseable
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface RenderRegistration extends AutoCloseable
Handle returned by registration APIs.

Closing the handle is equivalent to calling unregister().

  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    Removes the associated registration.
    void
    Removes the associated registration.
  • Method Details

    • unregister

      void unregister()
      Removes the associated registration.
    • close

      default void close()
      Removes the associated registration.
      Specified by:
      close in interface AutoCloseable