Package com.pspdfkit.analytics
Interface AnalyticsClient
-
- All Implemented Interfaces:
public interface AnalyticsClient
Interface of a client that can receive analytics data. Register implementations of this interface via addAnalyticsClient.
-
-
Method Summary
-
-
Method Detail
-
onEvent
abstract void onEvent(@NonNull() String name, @Nullable() Bundle data)
Callback for analytics events. This method is called by PSPDFKit as soon as an analytics event was triggered. This method will be called on a background thread, dedicated to the analytics client.
- Parameters:
name
- Name of the event.data
- Bundle with event data.
-
-
-
-