Interface ICleanUpRegistry

All Known Implementing Classes:
CleanUpRegistry

public interface ICleanUpRegistry
Callback interface for registering new type converters.
Author:
Philip Helger
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
     
    static final int
     
    static final int
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    registerCleanup(int nPriority, @NonNull Runnable aRunnable)
    Register a cleanup action.
  • Field Details

  • Method Details

    • registerCleanup

      void registerCleanup(int nPriority, @NonNull Runnable aRunnable)
      Register a cleanup action.
      Parameters:
      nPriority - Priority - the higher the earlier it is called
      aRunnable - The runnable to be executed. May not be null.