You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
458 B
16 lines
458 B
package com.xsn.explorer.data
|
|
|
|
import com.alexitc.playsonify.core.ApplicationResult
|
|
import com.xsn.explorer.models.Balance
|
|
import com.xsn.explorer.models.base.{PaginatedQuery, PaginatedResult}
|
|
|
|
import scala.language.higherKinds
|
|
|
|
trait BalanceDataHandler[F[_]] {
|
|
|
|
def upsert(balance: Balance): F[Balance]
|
|
|
|
def getRichest(query: PaginatedQuery): F[PaginatedResult[Balance]]
|
|
}
|
|
|
|
trait BalanceBlockingDataHandler extends BalanceDataHandler[ApplicationResult]
|
|
|