Event Data
Data Object containing information about an event that has happened within the pipeline.
Class name: com.datashyft.pipeline.dataobjects.EventData
EventData(long timestamp, Map<String, String> eventInfo) — Constructs an Event Data object with the specified timestamp and event data. A copy of the Map is created to prevent external modification.
EventData(Map<String, List<String> tags, String type, long timestamp, Map<String, String> eventInfo) — Constructs an Event Data object with the specified timestamp and event data. The new object is assigned the specified tags and type.A copy of the Map is created to prevent external modification.
getEventInfo() — Returns a map containing the information about the event.
getTimestamp() — Returns the timestamp at which the event occurred.