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.client; //from w w w. j ava 2 s .c o m import java.io.UnsupportedEncodingException; import com.playnomics.android.events.PlaynomicsEvent; public interface IEventQueue { public void enqueueEvent(PlaynomicsEvent event) throws UnsupportedEncodingException; public void enqueueEventUrl(String eventUrl); public boolean isEmpty(); public String dequeueEventUrl(); }