Back to project page playnomics-android.
The source code is released under:
Apache License
If you think the Android project playnomics-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.playnomics.android.events; //w w w . j a va 2 s. c o m import com.playnomics.android.session.GameSessionInfo; import com.playnomics.android.util.*; public class AppPauseEvent extends ImplicitEvent { public AppPauseEvent(IConfig config, GameSessionInfo sessionInfo, LargeGeneratedId instanceId, EventTime sessionStartTime, int sequenceNumber, int touches, int totalTouches, int delayInMinutes) { super(config, sessionInfo, instanceId); final int updateTimeIntervalMilliseconds = delayInMinutes*60*1000; final int keysPressed = 0; final int totalKeysPressed = 0; final int collectionMode = config.getCollectionMode(); appendParameter(config.getSequenceKey(), sequenceNumber); appendParameter(config.getTouchesKey(), touches); appendParameter(config.getTotalTouchesKey(), totalTouches); appendParameter(config.getSessionStartTimeKey(), sessionStartTime); appendParameter(config.getKeysPressedKey(), keysPressed); appendParameter(config.getTotalKeysPressedKey(), totalKeysPressed); appendParameter(config.getIntervalMillisecondsKey(), updateTimeIntervalMilliseconds); appendParameter(config.getCollectionModeKey(), collectionMode); } @Override public String getUrlPath() { return config.getEventPathAppPause(); } }