object DynamoDb
- Alphabetic
- By Inheritance
- DynamoDb
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def flow[In <: DynamoDbRequest, Out <: DynamoDbResponse](parallelism: Int)(implicit client: DynamoDbAsyncClient, operation: DynamoDbOp[In, Out]): Flow[In, Out, NotUsed]
Create a Flow that emits a response for every request to DynamoDB.
Create a Flow that emits a response for every request to DynamoDB.
- parallelism
maximum number of in-flight requests at any given time
- def flowPaginated[In <: DynamoDbRequest, Out <: DynamoDbResponse]()(implicit client: DynamoDbAsyncClient, operation: DynamoDbPaginatedOp[In, Out, _]): Flow[In, Out, NotUsed]
Sends requests to DynamoDB and emits the paginated responses.
Sends requests to DynamoDB and emits the paginated responses.
Pagination is available for
BatchGetItem
,ListTables
,Query
andScan
requests. - def flowWithContext[In <: DynamoDbRequest, Out <: DynamoDbResponse, Ctx](parallelism: Int)(implicit client: DynamoDbAsyncClient, operation: DynamoDbOp[In, Out]): FlowWithContext[In, Ctx, Try[Out], Ctx, NotUsed]
Create a
FlowWithContext
that emits a response for every request to DynamoDB.Create a
FlowWithContext
that emits a response for every request to DynamoDB. A successful response is wrapped in scala.util.Success and a failed response is wrapped in scala.util.Failure.The context is merely passed through to the emitted element.
- Ctx
context (or pass-through)
- parallelism
maximum number of in-flight requests at any given time
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def single[In <: DynamoDbRequest, Out <: DynamoDbResponse](request: In)(implicit client: DynamoDbAsyncClient, operation: DynamoDbOp[In, Out], system: ClassicActorSystemProvider): Future[Out]
Create a Future that will be completed with a response to a given request.
Create a Future that will be completed with a response to a given request.
- Annotations
- @implicitNotFound()
- def source[In <: DynamoDbRequest, Out <: DynamoDbResponse](request: In)(implicit client: DynamoDbAsyncClient, operation: DynamoDbPaginatedOp[In, Out, _]): Source[Out, NotUsed]
Create a Source that will emit potentially multiple responses for a given request.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()