I have the following method:
protected <T> Func1<ApiResponse<T>, Observable<T>> checkApiSuccess() {
return new Func1<ApiResponse<T>, Observable<T>>() {
@Override
public Observable<T> call(ApiResponse<T> response) {
if (response.isSuccess()) {
return Observable.from(response.getResult());
}
return Observable.error(new ApiException(response.getError()));
}
};
}
Why does this work:
Func1<ApiResponse<LoginResult>, Observable<LoginResult>>
checkApiSuccessFunc = checkApiSuccess();
return apiService
.login(params)
.flatMap(checkApiSuccessFunc);
but this doesn't:
return apiService
.login(params)
.flatMap(checkApiSuccess());
I get the compile-time error no suitable method found for flatMap(Func1<ApiResponse<Object>>, Observable<Object>)
. Somehow when using the method directly the type T can't be mapped to LoginResult anymore.
The type inference probably can't determine that the
T
should be aLoginResult
. It may work with Java 8 where the type inference system has been improved.You could try using a target type to help the compiler: