私はアンドロイドクライアントから私のWebサービスにアクセスするコードを書いています。私は様々なcalls.Atのための瞬間を観察可能なタイプを返すように改造を使用しています分で私は改装!一般的な観測可能なタイプを返します
@FormUrlEncoded
@POST("/app/{pathto}")
Observable<List<EntryItem>> getNewsAndComments(@Path("pathto") String pathto, @FieldMap Map<String, String> fieldnames);
/**
* adding a comment. returns observable
* with message entity type
*
* @param pathto
* @param fieldnames
* @return
*/
@FormUrlEncoded
@POST("/app/{pathto}")
Observable<message> postComment(@Path("pathto") String pathto, @FieldMap Map<String, String> fieldnames);
@FormUrlEncoded
@POST("/{pathto}")
Call<message> regDevice(@Path("pathto") String pathto ,@FieldMap Map<String, String> fieldnames);
/**
* return a Map of canteen menu items!
*
* @param path
* @param fielditems
* @return
*/
@FormUrlEncoded
@POST("/app/{pathto}")
Observable<Map<String, ArrayList<CantItem>>> getCanteenItems(@Path("path") String path, @FieldMap Map<String,String> fielditems);
私はまた、一般的なレトロフィットサービスを作成するために、一般的なRestServiceファクトリを使用します(下図参照)、これらの4を持っています。私は読んでいたブログ記事からこれを盗んだ。 。などのメソッド呼び出しの多く観察できるのI戻る私のインターフェイスで
public static <T> T getRetroFitService(final Class<T> clazz, final String endpoint)
{
final Retrofit retrofit = new Retrofit.Builder()
.addConverterFactory(GsonConverterFactory.create())
.addCallAdapterFactory(RxJavaCallAdapterFactory.create())
.baseUrl(endpoint)
.build();
T service = retrofit.create(clazz);
return service;
}
ので、私は、次の一般的なコール
残念ながらObservable<List<T>>
にこれを変更しようとした同じように見え、改造はいないようですこれを好きにする。私はこれを回避する方法があるのだろうかと疑問に思っていたので、インターフェイスの呼び出しをもっと一般的なものにすることができます。例えば、自分のTypeAdapterをRestServiceFactoryに渡しますか?また、私は比較的新しく改造してrx-androidなので、どんなアドバイスも感謝しています。ありがとう!