Packages

package domain

Source
package.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. domain
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class DeleteResult(deleteCount: Long, wasAcknowledged: Boolean) extends Product with Serializable
  2. case class InsertManyResult(insertedIds: Set[String], wasAcknowledged: Boolean) extends Product with Serializable
  3. case class InsertOneResult(insertedId: Option[String], wasAcknowledged: Boolean) extends Product with Serializable
  4. case class RetryStrategy(attempts: Int = 1, backoffDelay: FiniteDuration = Duration.Zero) extends Product with Serializable

    A retry strategy is defined by the amount of retries and backoff delay per operation.

    A retry strategy is defined by the amount of retries and backoff delay per operation.

    attempts

    the number of times that an operation can be retried before actually returning a failed task. it must be higher or equal than 1.

    backoffDelay

    delay after failure for the execution of a single mongodb operation.

  5. type Tuple2F[T[_], A, B] = (T[A], T[B])
  6. type Tuple3F[T[_], A, B, C] = (T[A], T[B], T[C])
  7. type Tuple4F[T[_], A, B, C, D] = (T[A], T[B], T[C], T[D])
  8. type Tuple5F[T[_], A, B, C, D, E] = (T[A], T[B], T[C], T[D], T[E])
  9. type Tuple6F[T[_], A, B, C, D, E, F] = (T[A], T[B], T[C], T[D], T[E], T[F])
  10. type Tuple7F[T[_], A, B, C, D, E, F, G] = (T[A], T[B], T[C], T[D], T[E], T[F], T[G])
  11. type Tuple8F[T[_], A, B, C, D, E, F, G, H] = (T[A], T[B], T[C], T[D], T[E], T[F], T[G], T[H])
  12. case class UpdateResult(matchedCount: Long, modifiedCount: Long, wasAcknowledged: Boolean) extends Product with Serializable

Value Members

  1. final val DefaultRetryStrategy: RetryStrategy

Inherited from AnyRef

Inherited from Any

Ungrouped