Class StatusDashboardPublisherPersistentQueryEnterpriseTable

java.lang.Object
io.deephaven.status.dashboard.StatusDashboardPublisherPersistentQueryBase
io.deephaven.status.dashboard.StatusDashboardPublisherPersistentQueryEnterpriseTable

public class StatusDashboardPublisherPersistentQueryEnterpriseTable extends StatusDashboardPublisherPersistentQueryBase
Extension of StatusDashboardPublisherPersistentQueryBase that monitors table(s) within a persistent query. The persistent query should create Table objects that contain a Timestamp column which has the latest updated timestamp and publish them preemptively. For example, to create such a table called PELPublisher for the ProcessEventLog in a groovy PQ:
PELPublisherBase=SortedBy.sortedLastBy(db.i("DbInternal", "ProcessEventLog").where("Date=currentDateNy()").view("Timestamp"), "Timestamp")
PELPublisher=PELPublisherBase.preemptiveUpdatesTable(1000)