Class

play.modules.reactivemongo.json.collection

JsCursorImpl

Related Doc: package collection

Permalink

class JsCursorImpl[T] extends JsCursor[T] with WrappedCursor[T]

Annotations
@deprecated
Deprecated

(Since version 0.12.0) Use reactivemongo.play.json.collection.JsCursorImpl

Linear Supertypes
WrappedCursor[T], JsCursor[T], Cursor[T], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JsCursorImpl
  2. WrappedCursor
  3. JsCursor
  4. Cursor
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JsCursorImpl(wrappee: Cursor[T])(implicit arg0: Writes[T])

    Permalink

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 collect[M[_]](maxDocs: Int, stopOnError: Boolean)(implicit cbf: CanBuildFrom[M[_], T, M[T]], ec: ExecutionContext): Future[M[T]]

    Permalink
    Definition Classes
    WrappedCursor → Cursor
  7. def collect[M[_]](maxDocs: Int, err: ErrorHandler[M[T]])(implicit cbf: CanBuildFrom[M[_], T, M[T]], ec: ExecutionContext): Future[M[T]]

    Permalink
    Definition Classes
    WrappedCursor → Cursor
  8. def documentIterator(response: Response)(implicit ec: ExecutionContext): Future[Iterator[T]]

    Permalink
    Definition Classes
    WrappedCursor → Cursor
  9. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def fold[A](z: ⇒ A, maxDocs: Int)(suc: (A, T) ⇒ A)(implicit ctx: ExecutionContext): Future[A]

    Permalink
    Definition Classes
    Cursor
  13. def foldBulks[A](z: ⇒ A, maxDocs: Int)(suc: (A, Iterator[T]) ⇒ State[A], err: ErrorHandler[A])(implicit ctx: ExecutionContext): Future[A]

    Permalink
    Definition Classes
    WrappedCursor → Cursor
  14. def foldBulksM[A](z: ⇒ A, maxDocs: Int)(suc: (A, Iterator[T]) ⇒ Future[State[A]], err: ErrorHandler[A])(implicit ctx: ExecutionContext): Future[A]

    Permalink
    Definition Classes
    WrappedCursor → Cursor
  15. def foldResponses[A](z: ⇒ A, maxDocs: Int)(suc: (A, Response) ⇒ State[A], err: ErrorHandler[A])(implicit ctx: ExecutionContext): Future[A]

    Permalink
    Definition Classes
    WrappedCursor → Cursor
  16. def foldResponsesM[A](z: ⇒ A, maxDocs: Int)(suc: (A, Response) ⇒ Future[State[A]], err: ErrorHandler[A])(implicit ctx: ExecutionContext): Future[A]

    Permalink
    Definition Classes
    WrappedCursor → Cursor
  17. def foldWhile[A](z: ⇒ A, maxDocs: Int)(suc: (A, T) ⇒ State[A], err: ErrorHandler[A])(implicit ctx: ExecutionContext): Future[A]

    Permalink
    Definition Classes
    WrappedCursor → Cursor
  18. def foldWhileM[A](z: ⇒ A, maxDocs: Int)(suc: (A, T) ⇒ Future[State[A]], err: ErrorHandler[A])(implicit ctx: ExecutionContext): Future[A]

    Permalink
    Definition Classes
    WrappedCursor → Cursor
  19. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  21. def headOption(implicit ctx: ExecutionContext): Future[Option[T]]

    Permalink
    Definition Classes
    Cursor
  22. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  23. def jsArray(maxDocs: Int = Int.MaxValue)(implicit ec: ExecutionContext): Future[JsArray]

    Permalink

    Returns the result of cursor as a JSON array.

    Returns the result of cursor as a JSON array.

    maxDocs

    Maximum number of documents to be retrieved

    Definition Classes
    JsCursorImplJsCursor
  24. def makeRequest(maxDocs: Int)(implicit ctx: ExecutionContext): Future[Response]

    Permalink
    Definition Classes
    WrappedCursor → Cursor
  25. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. def nextResponse(maxDocs: Int): (ExecutionContext, Response) ⇒ Future[Option[Response]]

    Permalink
    Definition Classes
    WrappedCursor → Cursor
  27. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  29. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  31. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. val wrappee: Cursor[T]

    Permalink
    Definition Classes
    JsCursorImpl → WrappedCursor

Deprecated Value Members

  1. def enumerate(maxDocs: Int, stopOnError: Boolean)(implicit ctx: ExecutionContext): Enumerator[T]

    Permalink
    Definition Classes
    WrappedCursor → Cursor
    Annotations
    @deprecated
    Deprecated

    (Since version 0.11.10) Use the Play Iteratee modules

  2. def enumerateBulks(maxDocs: Int, stopOnError: Boolean)(implicit ctx: ExecutionContext): Enumerator[Iterator[T]]

    Permalink
    Definition Classes
    WrappedCursor → Cursor
    Annotations
    @deprecated
    Deprecated

    (Since version 0.11.10) Use the Play Iteratee modules

  3. def enumerateResponses(maxDocs: Int, stopOnError: Boolean)(implicit ctx: ExecutionContext): Enumerator[Response]

    Permalink
    Definition Classes
    WrappedCursor → Cursor
    Annotations
    @deprecated
    Deprecated

    (Since version 0.11.10) Use the Play Iteratee modules

  4. def rawEnumerateResponses(maxDocs: Int)(implicit ctx: ExecutionContext): Enumerator[Response]

    Permalink
    Definition Classes
    WrappedCursor → Cursor
    Annotations
    @deprecated
    Deprecated

    (Since version 0.11.10) Use the Play Iteratee modules

  5. def toList(maxDocs: Int, stopOnError: Boolean)(implicit ctx: ExecutionContext): Future[List[T]]

    Permalink
    Definition Classes
    Cursor
    Annotations
    @deprecated
    Deprecated

    (Since version 0.10.0) consider using collect[List] instead

Inherited from WrappedCursor[T]

Inherited from JsCursor[T]

Inherited from Cursor[T]

Inherited from AnyRef

Inherited from Any

Ungrouped