Class Event<T>

java.lang.Object
io.deephaven.web.client.api.event.Event<T>
Type Parameters:
T - the type of the event detail

@TsInterface @TsName(namespace="dh") public class Event<T> extends Object
Similar to the browser CustomEvent type, this class holds only the type of the event, and optionally some details about the event.
  • Constructor Details

    • Event

      public Event(String type, T detail)
  • Method Details

    • getType

      @JsProperty public String getType()
    • getDetail

      @JsProperty public T getDetail()