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.session; /*from w ww. ja v a2s . co m*/ public interface IHeartBeatProducer { public void start(final HeartBeatHandler handler); public void stop(); public boolean isRunningForLongTime(); public int getHeartBeatIntervalInMinutes(); }