Package io.piano.analytics
Interface PianoAnalytics.OnWorkListener
-
- Enclosing class:
- PianoAnalytics
public static interface PianoAnalytics.OnWorkListenerInterface providing interaction possibilities
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default booleanonBeforeBuild(Model model)Called when raw data is available and customer want to override it before buildingdefault booleanonBeforeSend(BuiltModel built, Map<String,BuiltModel> stored)Called when built data is available and customer want to override sending method
-
-
-
Method Detail
-
onBeforeBuild
default boolean onBeforeBuild(Model model)
Called when raw data is available and customer want to override it before building- Parameters:
model- all computed data- Returns:
- boolean indicates if process have to continue
-
onBeforeSend
default boolean onBeforeSend(BuiltModel built, Map<String,BuiltModel> stored)
Called when built data is available and customer want to override sending method- Parameters:
built- built datastored- stored data- Returns:
- boolean indicates if process have to continue
-
-