Trait

org.ada.server.dataaccess.mongo

MongoAsyncCrudExtraRepo

Related Doc: package mongo

Permalink

trait MongoAsyncCrudExtraRepo[E, ID] extends AsyncCrudRepo[E, ID]

Linear Supertypes
AsyncCrudRepo[E, ID], AsyncRepo[E, ID], AsyncReadonlyRepo[E, ID], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MongoAsyncCrudExtraRepo
  2. AsyncCrudRepo
  3. AsyncRepo
  4. AsyncReadonlyRepo
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def count(criteria: Seq[Criterion[Any]]): Future[Int]

    Permalink
    Definition Classes
    AsyncReadonlyRepo
  2. abstract def delete(id: ID): Future[Unit]

    Permalink
    Definition Classes
    AsyncCrudRepo
  3. abstract def deleteAll: Future[Unit]

    Permalink
    Definition Classes
    AsyncCrudRepo
  4. abstract def find(criteria: Seq[Criterion[Any]], sort: Seq[Sort], projection: Traversable[String], limit: Option[Int], skip: Option[Int]): Future[Traversable[E]]

    Permalink
    Definition Classes
    AsyncReadonlyRepo
  5. abstract def findAggregate(rootCriteria: Seq[Criterion[Any]], subCriteria: Seq[Criterion[Any]], sort: Seq[Sort], projection: Option[JsObject], idGroup: Option[JsValue], groups: Option[Seq[(String, play.modules.reactivemongo.json.commands.JSONAggregationFramework.GroupFunction)]], unwindFieldName: Option[String], limit: Option[Int], skip: Option[Int]): Future[Traversable[JsObject]]

    Permalink
    Attributes
    protected[org.ada.server.dataaccess]
  6. abstract def flushOps: Future[Unit]

    Permalink
    Definition Classes
    AsyncRepo
  7. abstract def get(id: ID): Future[Option[E]]

    Permalink
    Definition Classes
    AsyncReadonlyRepo
  8. abstract def save(entity: E): Future[ID]

    Permalink
    Definition Classes
    AsyncRepo
  9. abstract def update(entity: E): Future[ID]

    Permalink
    Definition Classes
    AsyncCrudRepo
  10. abstract def updateCustom(selector: JsObject, modifier: JsObject): Future[Unit]

    Permalink
    Attributes
    protected[org.ada.server.dataaccess]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def delete(ids: Traversable[ID]): Future[Unit]

    Permalink
    Definition Classes
    AsyncCrudRepo
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def exists(id: ID): Future[Boolean]

    Permalink
    Definition Classes
    AsyncReadonlyRepo
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def findAsStream(criteria: Seq[Criterion[Any]], sort: Seq[Sort], projection: Traversable[String], limit: Option[Int], skip: Option[Int]): Future[Source[E, _]]

    Permalink
    Definition Classes
    AsyncReadonlyRepo
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. def save(entities: Traversable[E]): Future[Traversable[ID]]

    Permalink
    Definition Classes
    AsyncRepo
  19. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  20. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  21. def update(entities: Traversable[E]): Future[Traversable[ID]]

    Permalink
    Definition Classes
    AsyncCrudRepo
  22. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AsyncCrudRepo[E, ID]

Inherited from AsyncRepo[E, ID]

Inherited from AsyncReadonlyRepo[E, ID]

Inherited from AnyRef

Inherited from Any

Ungrouped