Back to project page kirin-for-android.
The source code is released under:
Apache License
If you think the Android project kirin-for-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.futureplatforms.kirin.generated.xhr; /* w ww. j a v a 2 s . co m*/ import com.futureplatforms.kirin.generated.xhr.KirinXHRequest; /** * This module reimplements the bare minimum that native needs to drive an implementation of XMLHTTPRequests, adding resiliance to interrupt events such as loss of network connectivity, application backgrounding and perhaps even reboot. */ public interface KirinXHRExtension { /** * @param xhrObject {@link KirinXHRequest} * @param data {@link Object} */ void open(KirinXHRequest xhrObject, Object data); /** * @param xhrId {@link String} */ void abort(String xhrId); }