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

    Modifier and Type
    Method
    Description
    void
    onChange(List<String> flagKey)
    Called by the SDK whenever it receives an update for the stored flag values of the current context.
  • Method Details

    • onChange

      void onChange(List<String> flagKey)
      Called by the SDK whenever it receives an update for the stored flag values of the current context.
      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.