-
public interface Tracker
Defines a Tracker. An implementation should allow tracking of TrackingEvent.
-
-
Method Summary
Modifier and Type Method Description abstract Timeline
getTimeline()
Returns the Timeline. abstract void
track(@NonNull() List<TrackingEvent> trackingEvents)
Tracks the given TrackingEvent. -
-
Method Detail
-
getTimeline
@NonNull() abstract Timeline getTimeline()
Returns the Timeline.
-
track
abstract void track(@NonNull() List<TrackingEvent> trackingEvents)
Tracks the given TrackingEvent.
- Parameters:
trackingEvents
- List of events to be tracked.
-
-
-
-