Back to project page StockTicker.
The source code is released under:
MIT License
If you think the Android project StockTicker 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.premnirmal.ticker.network; /*from ww w. j a va 2 s. co m*/ import retrofit.http.GET; import rx.Observable; /** * Created by premnirmal on 12/21/14. */ public interface SuggestionApi { @GET("/autoc?callback=YAHOO.Finance.SymbolSuggest.ssCallback") Observable<Suggestions> getSuggestions(@retrofit.http.Query("query") String query); }