You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Claus Ibsen (Jira)" <ji...@apache.org> on 2022/09/02 09:17:00 UTC

[jira] [Resolved] (CAMEL-9682) camel-rx module should extend Bean Binding to support methods returning Observable

     [ https://issues.apache.org/jira/browse/CAMEL-9682?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Claus Ibsen resolved CAMEL-9682.
--------------------------------
    Resolution: Won't Fix

> camel-rx module should extend Bean Binding to support methods returning Observable<T>
> -------------------------------------------------------------------------------------
>
>                 Key: CAMEL-9682
>                 URL: https://issues.apache.org/jira/browse/CAMEL-9682
>             Project: Camel
>          Issue Type: Improvement
>          Components: camel-rx
>            Reporter: James Strachan
>            Priority: Major
>             Fix For: Future
>
>
> when making asynchronous InOut requests it'd be nice if methods could return Observable<T> so that we could use the RxJava async programming model to process async requests & responses.
> e.g. kinda like how folks can use Retrofit for HTTP: http://joluet.github.io/blog/2014/07/07/rxjava-retrofit/
> {code}
> public interface MyThing {
> @GET("/session.json")
> Observable<LoginResponse> login();
> @GET("/user.json")
> Observable<UserState> getUserState();
> }
> {code}
> to then let you use the normal composition / join / flatMap stuff in RxJava to compose multiple requests across different microservice invocations together with timeouts etc e.g. to compose the latest from 2 calls:
> {code}
> Observable.combineLatest(api.fetchUserProfile(), api.getUserState(),
> (user, userStatus) -> new Pair<>(user, userStatus));
> {code}
> Where we'd replace the @GET annotation with a bean binding annotation and a URI parameter to switch to using ActiveMQ or Twitter or whatever



--
This message was sent by Atlassian Jira
(v8.20.10#820010)