I want to make a three tasks running successively based on the parameter. Originally, I implemented this idea with asynctask
but trouble comes a lot. I would like to change the idea to RxJava
but I have no idea how to implement it.
Task A ( params: integer , response: String[] )
Task B ( params: String[] , response: long)
Task C ( params: long, response : boolean)
Task A -> B -> C
Can anyone give me a simple example how to implement it ? Thank you.
I found this library useful but I am not sure how to implement it.