Interface LDAllFlagsListener

  • 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 LDAllFlagsListener
    Callback interface used for listening to changes to the flag store.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void onChange​(java.util.List<java.lang.String> flagKey)
      Called by the SDK whenever it receives an update for the stored flag values of the current user.
    • Method Detail

      • onChange

        void onChange​(java.util.List<java.lang.String> flagKey)
        Called by the SDK whenever it receives an update for the stored flag values of the current user.
        Parameters:
        flagKey - A list of flag keys which were created, updated, or deleted as part of the update. This list may be empty if the update resulted in no changed flag values.