Antariksh ChavanforAntariksh's Tech diaryantariksh.hashnode.net·Sep 1, 2019FeaturedExploring Apollo GraphQL for Android - Real-world examplesThis is Part II of the Apollo GraphQL series that I’m writing for Android. If you are new to Apollo GraphQL then I recommend that you read my first blog post of this series. In the previous part, I covered Introduction and setting up Apollo GraphQL ...Discuss·13 likes·2.0K readsExploring Apollo GraphQL for AndroidAndroid
Amit ShekharforAmit Shekharamitshekhar.hashnode.net·Nov 13, 2022RxJava Subject - Publish, Replay, Behavior, and AsyncI am Amit Shekhar, a mentor helping developers in getting high-paying tech jobs. In this blog, we will learn about the RxJava Subject - Publish, Replay, Behavior, and Async. This article is all about the Subject available in RxJava. Publish Subject ...Discuss·1 like·27 readsAndroid
Gaurav ChaddhaforGaurav Chaddha's blogchaddhag.hashnode.net·Oct 3, 2016Understanding the enigma of RxJavaThe first thing that came to my mind when I first heard about Functional Reactive Programming (FRP) and RxJava was why?! Why switch from my comfortable Imperative programming and AsyncTask world? The answer was not clear at that time but after recent...Discuss·54 readsrxjava
Amit ShekharforAmit Shekharamitshekhar.hashnode.net·Nov 13, 2022RxJava Subject - Publish, Replay, Behavior, and AsyncI am Amit Shekhar, a mentor helping developers in getting high-paying tech jobs. In this blog, we will learn about the RxJava Subject - Publish, Replay, Behavior, and Async. This article is all about the Subject available in RxJava. Publish Subject ...Discuss·1 like·27 readsAndroid
Anshul GautamforUtopian Nerdbumbler.hashnode.net·Mar 25, 2022Reactive Programming using RxJava🎯 What is RxJava? The official documentation defines it as: It is a Java VM implementation of Reactive Extensions. Reactive Extensions is a library for composing asynchronous and event-based programs by using observable sequences. In simpler terms...Discuss·134 readsrxjava
Kamila Santos Oliveiraforkamila_codekamilacode.hashnode.net·Apr 17, 2021Reactive programming : main conceptsThere has been a lot of talk about reactive programming in recent years, let's get to know the main concepts behind it : Reactive Paradigm It is a programming paradigm oriented to data / event flows, as well as their propagation asynchronously; Beca...Discuss·289 readsReactive Programming
Kumar PallavforPallav - The Coding Saintkumarpallav.hashnode.net·Jan 9, 2020Creating Observable RxJavaObservable being the most important block of reactive programming , it is important to understand different methods of creating Observable. Observable can be created be created by following methods. just create defer range interval repeat timer from...Discuss·84 readsJavarxjava
Kumar PallavforPallav - The Coding Saintkumarpallav.hashnode.net·Jan 2, 2020RxJava Reactive RevolutionsReactive is not new in Software Engineering. Within few years, we have seen an increase in reactive solutions at a large scale. Let us look at what reactive programming actually means. Reactive programming is a paradigm that enables programming for s...Discuss·38 readsJavaJava
Azizul Haq AnantoforAnanto's Blogananto.hashnode.net·Jan 28, 2020How to handle logs and tracing in Spring WebFlux and microservicesIt was a bumpy journey when I tried to customize and setup logs tracing in WebFlux in one of our projects. WebFlux is really cool to implement the idea of non-blocking servers out of the box in Java. This is built on Reactive Streams and supports ser...Discuss·2.0K readsSpring
Kumar PallavforPallav - The Coding Saintkumarpallav.hashnode.net·Jan 23, 2020Observable using timerObservable with timer will delay the publishing the event to the the time specified. It can be used if you want the Observable to delay the publishing of source events for some time.It will publish a Single element after the time specified. https://g...Discuss·61 readsJavaJava
Kumar PallavforPallav - The Coding Saintkumarpallav.hashnode.net·Jan 23, 2020Observable using intervalInterval are timed observables. They tell to perform an event at regular basis. Intervals will help to perform a task regularly. Below code is a way to create a Timed interval example. https://gist.github.com/CODINGSAINT/ba2f2fd9d301642ec7e8c87ba8e7e...Discuss·55 readsJavarxjava
Kumar PallavforPallav - The Coding Saintkumarpallav.hashnode.net·Jan 22, 2020Observable using deferObservable normally gets created once the code executes, Observable using defer , defers the creation of Observable. It waits till a subscription is done. Below are main property of Observable using defer. Creates new observable every time on subscr...DiscussJavaJava
Kumar PallavforPallav - The Coding Saintkumarpallav.hashnode.net·Jan 18, 2020Observable using createcreate is an important method to create Observable. Below are few points which make Observable using create interesting Creates from scratch observer methods are programmatically written emitter method is provided for interfaces to use B...Discuss·26 readsJavarxjava