Class JsLazy<T>

java.lang.Object
io.deephaven.web.client.api.JsLazy<T>

public class JsLazy<T> extends Object
  • Constructor Details

  • Method Details

    • get

      public T get()
    • isAvailable

      public boolean isAvailable()
    • of

      public static <A1, A2, T> JsLazy<T> of(BiFunction<A1,A2,T> factory, A1 arg1, A2 arg2)
    • of

      public static <A1, T> JsLazy<T> of(Function<A1,T> factory, A1 arg1)
    • of

      public static <T> JsLazy<T> of(JsLazy.LazyProvider<T> factory)
    • of

      public static <T> JsLazy<T> of(T value)