Probably the best rxJava talk , up there with Jake's.
@witoldsienski17096 жыл бұрын
One of the best presentation with excellent examples :) Perfect timing!
@paramanathanilanthirayan71787 жыл бұрын
Amazing talk with examples. Easy to understand
@huseyinbarin16537 жыл бұрын
very clear talk.
@Oussamaabdallah7 жыл бұрын
FlatMap and concatMap are very useful when i was writing my own library for downloading files i just used them to achieve an interesting behavior ( Parallel and sequential ) Downloading of a list of files.
@whereispanama8 жыл бұрын
I don't aggree about always favoring CompositeSubscription#clear over #unsubscribe. For example if you are using a CompositeSubscription and you create a new one it in onCreateView and call unsubscribe in onDestroyView it is very fail save because you won't accidentally resubscribe to it. Imagine you have some asynchronous callback coming in after onDestroyView. When you now subscribe to the composite subscription but have called .clear before your subscription will run, regardless of your intention to stop it. So often times it is better to call unsubscribe and create a new one if you enter onCreateView eventually again.
@AlexanderBollbach6 жыл бұрын
i'm confused about the slide at 3:00. in RxSwift (hopefully the concepts are the same), I can define an Observable from just and bind it to a variable and than map and subscribe to that.
@ytSpoiler6 жыл бұрын
Throwing exception in onError not rethrowing a exception outside subscriber it's important info
@stackming77098 жыл бұрын
retrofit is always right
@arunsasidharannambiar8 жыл бұрын
Doesn't doing an if-error check violate the principle of command query separation?
@world-traveler8808 жыл бұрын
Anybody have a link to the referenced rxjava beginners talk that was at 3:30?
@4sky8 жыл бұрын
+growingfuzzybeards I don't but Dan (the speaker) has a pretty good blog post for beginners blog.danlew.net/2014/09/15/grokking-rxjava-part-1/
@world-traveler8808 жыл бұрын
+Marco C. I already read that series or at least the first two. I would like to get an introduction in video form now.
@world-traveler8808 жыл бұрын
+growingfuzzybeards Ok I found the slides: speakerdeck.com/ferrytanu/simplify-your-code-with-rx
@GurpreetSinghgsk957 жыл бұрын
Should the create() method not be used in RxJava2 too?
@МаксимВишня-ц9ц7 жыл бұрын
it should, cuz it was changed from scratch in rx2
@ManjunathC238 жыл бұрын
How to handle 206's anyone ?
@HaiderKhanZ8 жыл бұрын
Lambda notion looks cool but creates more methods for you when you compile (65K dex limit), c'mon man title is "Common RxJava Mistakes" and you already made a mistake at 01:07
@IbrahimEad7 жыл бұрын
No, it's not a mistake retrolambda create for every anonymous class only one or three method which isn't that much to worry about the major reason you might exceed the 65K dex limit is libraries not your own code unless you have a really huge application which you will need to use multi dex anyway.