vigneshprabhu.devGameTracker Privacy PolicyPrivacy Policy Last updated: October 15, 2024 This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protect...Oct 15, 2024·9 min read
vigneshprabhu.devShared Flow and State FlowIn this series of articles , we are discussing about Kotlin flows and in this article we will discuss about State Flow and Shared Flow. Shared Flow shares emitted value to all collectors in a broadcast way all collectors receives all emitted values...May 16, 2024·1 min read
vigneshprabhu.devCold and Hot FlowsIn this series of articles , we are discussing about Kotlin flows and in this article we will discuss about Cold and Hot Flows Cold Flow Flows created with flow builders are cold by default Properties Becomes active on terminal operators(like coll...May 14, 2024·3 min read
vigneshprabhu.devFlow CancellationIn this series of articles , we are discussing about Kotlin flows and in this article we will discuss about Flow Cancellation. There are 2 ways to cancel the flow 1.Cancel the coroutine job // cancel the job val job = launch { sampleF...May 12, 2024·3 min read
vigneshprabhu.devFlow Intermediate OperatorIn this series of articles , we are discussing about Kotlin flows and in this article we will discuss about Flows Intermediate Operators Code : https://gist.github.com/vprabhu/04cd8f6eaeecaf0d3de72049d023eddf Sample Android App : Code : https://githu...May 10, 2024·2 min read