fixing readme

This commit is contained in:
DigitalBuddha 2019-05-27 10:32:20 -04:00
parent b9ff3164d0
commit a227ae2169

View file

@ -1,7 +1,7 @@
![FriendlyRepo Logo](https://raw.githubusercontent.com/friendlyrobotnyc/FriendlyRepo/feature/coroutines/Images/friendly_robot_icon.png)
# Core (Coroutines backed Store) [![CircleCI](https://circleci.com/gh/friendlyrobotnyc/FriendlyRepo.svg?style=svg)](https://circleci.com/gh/friendlyrobotnyc/FriendlyRepo)
Store is a Java library for effortless, reactive data loading.
Core is a Kotlin library for effortless data loading.
### The Problems:
@ -9,7 +9,7 @@ Store is a Java library for effortless, reactive data loading.
+ Users expect their UI experience to never be compromised (blocked) by new data loads. Whether an application is social, news, or business-to-business, users expect a seamless experience both online and offline.
+ International users expect minimal data downloads as many megabytes of downloaded data can quickly result in astronomical phone bills.
A Store is a class that simplifies fetching, parsing, storage, and retrieval of data in your application. A Store is similar to the Repository pattern [[https://msdn.microsoft.com/en-us/library/ff649690.aspx](https://msdn.microsoft.com/en-us/library/ff649690.aspx)] while exposing a Reactive API built with [RxJava](https://github.com/ReactiveX/RxJava) that adheres to a unidirectional data flow.
A Store is a class that simplifies fetching, parsing, storage, and retrieval of data in your application. A Store is similar to the Repository pattern [[https://msdn.microsoft.com/en-us/library/ff649690.aspx](https://msdn.microsoft.com/en-us/library/ff649690.aspx)] while exposing an API built with [Coroutines](https://kotlinlang.org/docs/reference/coroutines-overview.html) that adheres to a unidirectional data flow.
Store provides a level of abstraction between UI elements and data operations.