Interface ILateBindingValue

All Known Implementing Classes:
JsonLateBindingValue, PathLateBindingValue

public interface ILateBindingValue
Obtain the late binding value at runtime rather than storing the value in the cache thus trashing the cache
  • Method Summary

    Modifier and Type
    Method
    Description
    get()
    Obtain the value of the parameter at runtime using the parameter state and invocation of other late binding values rather than maintaining cached state which ends up in a global store and won't change as a result of external reference changes.
  • Method Details

    • get

      Object get()
      Obtain the value of the parameter at runtime using the parameter state and invocation of other late binding values rather than maintaining cached state which ends up in a global store and won't change as a result of external reference changes.
      Returns:
      The value of evaluating the context at runtime.