Back to project page khandroid.
The source code is released under:
Apache License
If you think the Android project khandroid 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.github.khandroid.rest; //from w w w. j a v a 2 s.c om public interface KhRestFunctionality { void start(); void setListener(Listener listener); long executeKhRestExchange(final RestExchange<KhRestResult> x); void consumeExchange(Long idL); void shutdown(); public interface Listener { void onKhRestExchangeCompleted(RestExchangeOutcome<KhRestResult> out, Long idL); } }