Package com.vaadin.flow.server.data
Class DataCountStartedEvent
java.lang.Object
java.util.EventObject
com.vaadin.flow.server.data.AbstractDataCountEvent
com.vaadin.flow.server.data.DataCountStartedEvent
- All Implemented Interfaces:
Serializable
Event fired through the
service event bus
immediately before a count query is issued to a data provider, on the thread
that issues it.- Since:
- 25.3
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionDataCountStartedEvent(UI ui, Component component, boolean filtered) Creates a new event. -
Method Summary
Methods inherited from class com.vaadin.flow.server.data.AbstractDataCountEvent
getComponent, getSource, getUI, isFilteredMethods inherited from class java.util.EventObject
toString
-
Constructor Details
-
DataCountStartedEvent
Creates a new event.- Parameters:
ui- the UI the counting component belongs to, notnullcomponent- the component whose data is being counted, ornullif it could not be resolvedfiltered- whether a filter was set on the query
-