Packages

trait ArangoClient[F[_]] extends AnyRef

ArangoDB client

F

effect

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ArangoClient
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def database(name: DatabaseName): ArangoDatabase[F]

    database api

  2. abstract def db: ArangoDatabase[F]

    configured database api

  3. abstract def execute[P, O](request: ArangoRequest[P])(implicit arg0: VPackEncoder[P], arg1: VPackDecoder[O]): F[ArangoResponse[O]]

    send a arangodb request with a body payload and receive arangodb response

    send a arangodb request with a body payload and receive arangodb response

    P

    payload body type

    O

    output body type

    request

    arango request

    returns

    arango response

  4. abstract def execute[O](header: Header)(implicit arg0: VPackDecoder[O]): F[ArangoResponse[O]]

    send a arangodb request without body and receive arangodb response

    send a arangodb request without body and receive arangodb response

    O

    output body type

    header

    arango header

    returns

    arango response

  5. abstract def execute(header: Header): F[Header]

    send a arangodb request without body and receive a arangodb response without body (HEAD)

    send a arangodb request without body and receive a arangodb response without body (HEAD)

    header

    arango request header

    returns

    arango header

  6. abstract def login(username: String, password: String): F[ArangoResponse[Error]]

    authenticate with arango server

  7. abstract def send(message: ByteVector): F[ByteVector]

    send a velocystream request message and receive a velocystream reply message

    send a velocystream request message and receive a velocystream reply message

    message

    VST message

    returns

    VST message

    Attributes
    protected
  8. abstract def server: ArangoServer[F]

    arangodb server api

  9. abstract def system: ArangoDatabase[F]

    _system database api

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped