Skip to content

Instantly share code, notes, and snippets.

@rohmanhakim
Created January 3, 2017 19:58
Show Gist options
  • Save rohmanhakim/003ea66a84bca35aa9aec2e3b899ab47 to your computer and use it in GitHub Desktop.
Save rohmanhakim/003ea66a84bca35aa9aec2e3b899ab47 to your computer and use it in GitHub Desktop.
package com.rohmanhakim.androidreactivedemo;
import java.util.List;
import retrofit2.http.GET;
import rx.Observable;
public interface SampleService {
@GET("emails")
Observable<List<String>> getEmails();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment