Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import io.reactivex.Single
import org.buffer.android.boilerplate.data.model.BufferooEntity

/**
* Interface defining methods for the caching of Bufferroos. This is to be implemented by the
* cache layer, using this interface as a way of communicating.
* Interface defining methods for getting Bufferoos remotely. This is to be implemented by the
* remote layer, using this interface as a way of communicating.
*/
interface BufferooRemote {

/**
* Retrieve a list of Bufferoos, from the cache
* Retrieve a list of Bufferoos, from the network or any other remote
*/
fun getBufferoos(): Single<List<BufferooEntity>>

Expand Down