Java Code Examples for com.flurry.android.FlurryAgent#endTimedEvent()

The following examples show how to use com.flurry.android.FlurryAgent#endTimedEvent() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: FlurryAnalyticsModule.java    From react-native-flurry-analytics with MIT License 5 votes vote down vote up
@ReactMethod
public void endTimedEvent(String eventName, ReadableMap parameters) {
  if (parameters == null) {
    FlurryAgent.endTimedEvent(eventName);
  } else {
    FlurryAgent.endTimedEvent(eventName, toMap(parameters));
  }
}
 
Example 2
Source File: FlurryModule.java    From react-native-flurry-sdk with Apache License 2.0 4 votes vote down vote up
@ReactMethod
public void endTimedEvent(String eventId) {
    FlurryAgent.endTimedEvent(eventId);
}
 
Example 3
Source File: FlurryModule.java    From react-native-flurry-sdk with Apache License 2.0 4 votes vote down vote up
@ReactMethod
public void endTimedEventParams(String eventId, ReadableMap parameters) {
    FlurryAgent.endTimedEvent(eventId, toMap(parameters));
}
 
Example 4
Source File: FlurryProvider.java    From AnalyticsKit-Android with Apache License 2.0 4 votes vote down vote up
/**
 * @see AnalyticsKitProvider
 */
@Override
public void endTimedEvent(@NonNull AnalyticsEvent timedEvent)
{
	FlurryAgent.endTimedEvent(timedEvent.name());
}
 
Example 5
Source File: GodotFlurry.java    From godot_modules with MIT License 2 votes vote down vote up
public void end_timed_event(String p_name) {


		if (!active) return;
		FlurryAgent.endTimedEvent(p_name);
	}