Class TourCompletedEvent

java.lang.Object
java.util.EventObject
com.vaadin.flow.component.ComponentEvent<com.vaadin.flow.component.Component>
org.vaadin.addons.ebtedge.flowtour.events.TourCompletedEvent
All Implemented Interfaces:
Serializable

public class TourCompletedEvent extends com.vaadin.flow.component.ComponentEvent<com.vaadin.flow.component.Component>
Event class representing the completion of a guided tour.

This event is triggered when a guided tour successfully reaches its conclusion. It provides information about the source component that initiated the event and whether the event was triggered from the client-side.

The `TourCompletedEvent` can be used in conjunction with the guided tour framework to handle post-completion actions, such as showing confirmation messages, updating application state, or triggering additional workflows based on the tour's successful completion.

See Also:
  • Constructor Details

    • TourCompletedEvent

      public TourCompletedEvent(com.vaadin.flow.component.Component source, boolean fromClient)