-
public interface WireframeMapper<T extends View, S extends MobileSegment.Wireframe>Maps a View to a List of MobileSegment.Wireframe. This is mainly used internally by the SDK but if you want to provide a different Session Replay representation for a specific View type you can implement this on your end.
-
-
Method Summary
Modifier and Type Method Description abstract List<S>map(T view, MappingContext mappingContext, AsyncJobStatusCallback asyncJobStatusCallback)Maps a View to a List<Wireframe> in order to be rendered in the Session Replay player. -
-
Method Detail
-
map
abstract List<S> map(T view, MappingContext mappingContext, AsyncJobStatusCallback asyncJobStatusCallback)
Maps a View to a List<Wireframe> in order to be rendered in the Session Replay player.
- Parameters:
view- as the View instance that will be mappedmappingContext- in which we provide useful information regarding the currentasyncJobStatusCallback- a callback that can be called when the mapper starts or finishes processing an async job.
-
-
-
-