Package com.streambase.liveview.client
Class BeginDeleteEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.streambase.liveview.client.AbstractQueryEvent
-
- com.streambase.liveview.client.BeginDeleteEvent
-
- All Implemented Interfaces:
Serializable
public final class BeginDeleteEvent extends AbstractQueryEvent
The event dispatched when a query delete begins.- Since:
- 1.5.2
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description BeginDeleteEvent(Object source, List<Schema.Field> fields)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
dispatch(QueryListener listener)
Dispatches this event to the listenerList<Schema.Field>
getFields()
Get the list of fields that the query tuples will have-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Constructor Detail
-
BeginDeleteEvent
public BeginDeleteEvent(Object source, List<Schema.Field> fields)
- Parameters:
source
- the source of the eventfields
- the list of fields that the query tuples will have
-
-
Method Detail
-
getFields
public List<Schema.Field> getFields()
Get the list of fields that the query tuples will have- Returns:
- the list of fields (schema) for the query tuples
-
dispatch
public void dispatch(QueryListener listener)
Dispatches this event to the listener- Specified by:
dispatch
in classAbstractQueryEvent
- Parameters:
listener
- the query listener
-
-