epam / CoroutinesCache

In mobile development exists solution for caching with RxJava usage, but there is no solutions for Kotlin Coroutines. The project is to provide this functionality to mobile community.
Apache License 2.0
162 stars 7 forks source link

Update documentation #2

Closed vvsevolodovich closed 5 years ago

vvsevolodovich commented 5 years ago

There is not such interface or class Cache in the library. However the example suggests the following:

val coroutines: Cache = CoroutinesCache(cacheParams: CacheParams, scope: CoroutineScope) This should be changed to

val coroutines: CoroutinesCache = CoroutinesCache(cacheParams: CacheParams, scope: CoroutineScope)

or simply val cache = CoroutinesCache(cacheParams: CacheParams, scope: CoroutineScope)

ahulyk commented 5 years ago

Related to doc: Provide the data from RxCache We do not have RxCache here :)

Dartlexx commented 5 years ago

Fixed it in last pull request