Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Mastering High Performance with Kotlin

You're reading from   Mastering High Performance with Kotlin Overcome performance difficulties in Kotlin with a range of exciting techniques and solutions

Arrow left icon
Product type Paperback
Published in Jun 2018
Publisher Packt
ISBN-13 9781788996648
Length 316 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Igor Kucherenko Igor Kucherenko
Author Profile Icon Igor Kucherenko
Igor Kucherenko
Arrow right icon
View More author details
Toc

Reactive programming

Reactive programming is a style of programming that's focused on reacting to events. The most common implementation of reactive programming is the RxJava library. There's also an extension library for Kotlin called RxKotlin, which provides extension functions for RxJava that make programming more convenient.

We can use reactive programming to handle a sequence of events or a sequences of events. This approach is based on the observable pattern, and these are the two most frequently used interfaces in RxJava:

  • ObservableSource: A basic interface for the Observable class:
public interface ObservableSource<T> {
void subscribe(@NonNull Observer<? super T> var1);
}
  • Observer: An interface that provides methods for receiving push-based notifications:
public interface Observer<T> {
void onSubscribe(@NonNull Disposable var1);

...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime