Package com.vaadin.flow.internal.streams
Class UploadStartEvent
java.lang.Object
java.util.EventObject
com.vaadin.flow.component.ComponentEvent<Component>
com.vaadin.flow.internal.streams.UploadStartEvent
- All Implemented Interfaces:
Serializable
Event notifying the upload component that the upload has been started.
This event is typically used in conjunction with file upload components and
UploadHandler
to indicate that the
upload process has started. This event is internal and is not intended for
public use.
For internal use only. May be renamed or removed in a future release.
- Since:
- 24.8
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorsConstructorDescriptionUploadStartEvent
(Component source) Creates a new event using the given source. -
Method Summary
Methods inherited from class com.vaadin.flow.component.ComponentEvent
getSource, isFromClient, unregisterListener
Methods inherited from class java.util.EventObject
toString
-
Constructor Details
-
UploadStartEvent
Creates a new event using the given source. Always fired on the server side.- Parameters:
source
- the source component
-