This presentation is mainly for the participants of DevFest Berlin 2016.
For the rest, a blog post is soon coming so the presentation won't be without the context.
I will talk about our experience of migrating a highly reactive application, used by millions of users, from RxJava 1.x to 2.x.
Firstly, I will share the advantages and disadvantages of moving to this new milestone release, so you can decide if it¡¯s worth to migrate your application.
I will then focus on possible migration approaches; which strategies worked for me and which did not.
Finally, we can discuss the frustrations that you need to prepare yourself for and how you can avoid them.
Conditional GET requests allow APIs to check if content has changed before returning it. If the content has not changed, the server returns a 304 status instead of the full response. This improves performance by avoiding unnecessary data transfer. Rails supports conditional requests using ETags and the Last-Modified header to check if content is stale or fresh based on modification timestamps or signatures of the content. If the request is fresh, Rails returns a 304 status, otherwise it returns the full response.
A practical guide to using RxJava on Android. Tips for improving your app architecture with reactive programming. What are the advantages and disadvantages of using RxJava over standard architecture? And how to connect with other popular Android libraries?
Presented at GDG DevFest The Netherlands 2016.
RxJava is a library for composing asynchronous and event-based programs using observable sequences. It avoids "callback hell" and supports streaming for performance benefits. While RxJava has a learning curve, it is important to start with streams, learn hot vs cold observables, always subscribe, and address issues like empty results. RxJava works best when subscribe code is separated and POJAM code is still used where possible. Its future looks promising with adoption in Android, JavaScript and Spring 5.
This document provides an introduction to Retrofit and RxJava. It discusses:
1. How Retrofit turns REST APIs into Java interfaces and handles JSON conversion.
2. What RxJava is and how it allows for composing asynchronous and event-based programs using observable sequences.
3. Examples of making HTTP requests with Retrofit, including defining services, making synchronous and asynchronous requests, and using callbacks and RxJava.
4. Key RxJava concepts like Observables, operators like map, flatMap, and zip, and threading.
For most of us, Reactive Android means using RxJava. In this presentation, I try to borrow a few ideas from the backend world and enrich the concept of Reactive in Android.
Consuming API description languages - Refract & MinimJakub Nesetril
?
The proliferation of API description languages is great, but poses a barrier to vendors who try to consume all of them. We should start looking at a higher abstraction.
RxJava is a library for composing asynchronous and event-based programs using observable sequences. It allows avoiding callback hell and makes it easy to compose and transform asynchronous processes through combining, filtering, etc. RxJava uses Observables to represent asynchronous data streams and allows subscribing to those streams using Observers. It supports asynchronous operations through Schedulers and can integrate with libraries like Retrofit to handle asynchronous network requests in a reactive way. Learning the RxJava concepts and operators takes some time but it provides many benefits for managing asynchronous code in a declarative way.
Streams, Streams Everywhere! An Introduction to RxAndrzej Sitek
?
Nowadays users expect real time data - tweets, messages, order confirmations etc. - the user's attitude moved to the ¡°push" model and it is high time for us devs to make that step as well.
Reactive Extensions (Rx) is the new hot stuff amongst developers these days. It is a library for composing asynchronous and event-based programs by using observable sequences. Sounds nice?
The only problem is that it can be a bit difficult to approach initially, especially when you come from an imperative world, but once mastered it helps dealing with some common problems in a nicer and cleaner way making your code more readable and easier to maintain.
Multiple implementations of Reactive Extensions helps reusing once learnt concepts between different programming languages. The aim of this talk is to provide a quick introduction to Rx theory and potential usecases. The examples are based on RxJava - the Java VM implementation of Reactive Extensions.
The document introduces RxJava and how it can be used in Android applications, describing key concepts like Observables, Observers, Operators, and Subjects that allow asynchronous and event-based code to be written in a reactive style. It provides examples of how RxJava can be used to fetch toilet data from an API and handle the asynchronous response more declaratively compared to using callbacks. The document also discusses how subjects can act as both observables that emit events and observers that receive events, making them useful for building event buses between activities.
RxJava 2.0 has been completely rewritten from scratch to conform to the Reactive Streams specification. This provides a common baseline for reactive systems and libraries. RxJava 2.0 introduces the Flowable source in addition to Observable to support backpressure, or flow control of the data stream. Flowable is appropriate when the source can support backpressure, while Observable is used when the source cannot apply backpressure. The document also discusses other specialized sources like Single, Completable and Maybe that return defined subsets of possible events.
Reactive Programming on Android - RxAndroid - RxJavaAli Muzaffar
?
Introduction to RxJava for reactive programming and how to use RxAndroid to do reactive programming on Android.
There is a sample android app to go with the slides that has all the source shown in the project.
Building Scalable Stateless Applications with RxJavaRick Warren
?
RxJava is a lightweight open-source library, originally from Netflix, that makes it easy to compose asynchronous data sources and operations. This presentation is a high-level intro to this library and how it can fit into your application.
This document compares several Java JSON parsers based on various criteria. It provides an overview of JSON and the Java APIs for processing JSON (JSR 339 and JSR 353). It then evaluates parsers like Jackson, Google GSON, javax.json and others based on criteria like community activity, performance, API features, dependencies and license. The conclusion is that Google GSON is best for small data and Jackson for large data according to previous benchmarks. It asks which parser may be best for RAM-constrained or IoT applications.
This document discusses code refactoring techniques in Ruby. It provides 3 cases as examples:
1. Refactoring a method to compare records from multiple conditionals to a single conditional with && operators.
2. Refactoring let statements that return objects to instead return the objects directly and use tap to save them for use in examples.
3. Refactoring a method that operates on an array to first remove the first element before iterating instead of using next to skip it.
The document encourages making code more smart and Ruby-like through refactoring. It notes there are 2.14 days left and encourages letting's get back to horse racing coding.
This document provides an overview of RxAndroid and RxJava. It discusses key concepts like Observables that emit items, Subscribers that receive emitted items and complete/error notifications, and Operators like map that transform Observables. It shows how to create a simple Observable, subscribe to it, and use operators like map. It also demonstrates integrating Rx with Android by observing button clicks and updating UI, merging multiple Observables, and using scan to increment a counter and calculate a running sum from emitted values.
A presentation given to Overstock.com IT at annual conference. Twitter @TECHknO 2015. Goal of the presentation is to provide a good introduction to the reactive programming model with RxJava.
Android architecture component - FbCircleDev Yogyakarta IndonesiaPratama Nur Wijaya
?
The document discusses Android Architecture Components (AAC). It describes AAC as a library, guidelines and standards that aim to standardize architecture and reduce boilerplate code. It discusses key components of AAC like Lifecycles, LiveData, ViewModel and Room that help address issues like lifecycle handling, data persistence and offline support. It provides code examples to demonstrate how these components can be used to build more robust Android applications that properly handle lifecycles and data.
This document provides information about Java 8 lambdas and closures presented by Dainius Me?anskas. It introduces lambda expressions and closures, explains why they were added to Java, describes functional interfaces and the @FunctionalInterface annotation. It provides lambda syntax examples and examples using lambda expressions with the Collections API and streams. It also discusses method references, default methods, and new methods added to the Collections framework in Java 8.
Lecture on Reactive programming on Android, mDevCamp 2016.
A practical guide to using RxJava on Android. Tips for improving your app architecture with reactive programming. What are the advantages and disadvantages of using RxJava over standard architecture? And how to connect with other popular Android libraries?
Streams, Streams Everywhere! An Introduction to RxAndrzej Sitek
?
Nowadays users expect real time data - tweets, messages, order confirmations etc. - the user's attitude moved to the ¡°push" model and it is high time for us devs to make that step as well.
Reactive Extensions (Rx) is the new hot stuff amongst developers these days. It is a library for composing asynchronous and event-based programs by using observable sequences. Sounds nice?
The only problem is that it can be a bit difficult to approach initially, especially when you come from an imperative world, but once mastered it helps dealing with some common problems in a nicer and cleaner way making your code more readable and easier to maintain.
Multiple implementations of Reactive Extensions helps reusing once learnt concepts between different programming languages. The aim of this talk is to provide a quick introduction to Rx theory and potential usecases. The examples are based on RxJava - the Java VM implementation of Reactive Extensions.
The document introduces RxJava and how it can be used in Android applications, describing key concepts like Observables, Observers, Operators, and Subjects that allow asynchronous and event-based code to be written in a reactive style. It provides examples of how RxJava can be used to fetch toilet data from an API and handle the asynchronous response more declaratively compared to using callbacks. The document also discusses how subjects can act as both observables that emit events and observers that receive events, making them useful for building event buses between activities.
RxJava 2.0 has been completely rewritten from scratch to conform to the Reactive Streams specification. This provides a common baseline for reactive systems and libraries. RxJava 2.0 introduces the Flowable source in addition to Observable to support backpressure, or flow control of the data stream. Flowable is appropriate when the source can support backpressure, while Observable is used when the source cannot apply backpressure. The document also discusses other specialized sources like Single, Completable and Maybe that return defined subsets of possible events.
Reactive Programming on Android - RxAndroid - RxJavaAli Muzaffar
?
Introduction to RxJava for reactive programming and how to use RxAndroid to do reactive programming on Android.
There is a sample android app to go with the slides that has all the source shown in the project.
Building Scalable Stateless Applications with RxJavaRick Warren
?
RxJava is a lightweight open-source library, originally from Netflix, that makes it easy to compose asynchronous data sources and operations. This presentation is a high-level intro to this library and how it can fit into your application.
This document compares several Java JSON parsers based on various criteria. It provides an overview of JSON and the Java APIs for processing JSON (JSR 339 and JSR 353). It then evaluates parsers like Jackson, Google GSON, javax.json and others based on criteria like community activity, performance, API features, dependencies and license. The conclusion is that Google GSON is best for small data and Jackson for large data according to previous benchmarks. It asks which parser may be best for RAM-constrained or IoT applications.
This document discusses code refactoring techniques in Ruby. It provides 3 cases as examples:
1. Refactoring a method to compare records from multiple conditionals to a single conditional with && operators.
2. Refactoring let statements that return objects to instead return the objects directly and use tap to save them for use in examples.
3. Refactoring a method that operates on an array to first remove the first element before iterating instead of using next to skip it.
The document encourages making code more smart and Ruby-like through refactoring. It notes there are 2.14 days left and encourages letting's get back to horse racing coding.
This document provides an overview of RxAndroid and RxJava. It discusses key concepts like Observables that emit items, Subscribers that receive emitted items and complete/error notifications, and Operators like map that transform Observables. It shows how to create a simple Observable, subscribe to it, and use operators like map. It also demonstrates integrating Rx with Android by observing button clicks and updating UI, merging multiple Observables, and using scan to increment a counter and calculate a running sum from emitted values.
A presentation given to Overstock.com IT at annual conference. Twitter @TECHknO 2015. Goal of the presentation is to provide a good introduction to the reactive programming model with RxJava.
Android architecture component - FbCircleDev Yogyakarta IndonesiaPratama Nur Wijaya
?
The document discusses Android Architecture Components (AAC). It describes AAC as a library, guidelines and standards that aim to standardize architecture and reduce boilerplate code. It discusses key components of AAC like Lifecycles, LiveData, ViewModel and Room that help address issues like lifecycle handling, data persistence and offline support. It provides code examples to demonstrate how these components can be used to build more robust Android applications that properly handle lifecycles and data.
This document provides information about Java 8 lambdas and closures presented by Dainius Me?anskas. It introduces lambda expressions and closures, explains why they were added to Java, describes functional interfaces and the @FunctionalInterface annotation. It provides lambda syntax examples and examples using lambda expressions with the Collections API and streams. It also discusses method references, default methods, and new methods added to the Collections framework in Java 8.
Lecture on Reactive programming on Android, mDevCamp 2016.
A practical guide to using RxJava on Android. Tips for improving your app architecture with reactive programming. What are the advantages and disadvantages of using RxJava over standard architecture? And how to connect with other popular Android libraries?