All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sisioh.aws4s.dynamodb.document.RichQueryOutcome.scala Maven / Gradle / Ivy

There is a newer version: 1.0.16
Show newest version
package org.sisioh.aws4s.dynamodb.document

import com.amazonaws.services.dynamodbv2.document.{ Item, QueryOutcome }
import com.amazonaws.services.dynamodbv2.model.QueryResult
import org.sisioh.aws4s.PimpedType

import scala.collection.JavaConverters._

object QueryOutcomeFactory {

  def apply(result: QueryResult): QueryOutcome = new QueryOutcome(result)

}

class RichQueryOutcome(val underlying: QueryOutcome) extends AnyVal with PimpedType[QueryOutcome] {

  def items: Seq[Item] = underlying.getItems.asScala.toVector

  def queryResult: QueryResult = underlying.getQueryResult

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy