Packages

abstract class Impl[F[_]] extends ArangoClient[F]

Abstract implementation of client execute methods, send method is left to akka or fs2

F

effect

Linear Supertypes
ArangoClient[F], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Impl
  2. ArangoClient
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Impl(configuration: ArangoConfiguration)(implicit F: MonadThrow[F], L: MessageLogger[F])

    configuration

    client configuration

    F

    monad

    L

    logger

Abstract Value Members

  1. 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
    Definition Classes
    ArangoClient

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. def database(name: DatabaseName): ArangoDatabase[F]

    database api

    database api

    Definition Classes
    ImplArangoClient
  7. val db: ArangoDatabase[F]

    configured database api

    configured database api

    Definition Classes
    ImplArangoClient
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. 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

    Definition Classes
    ImplArangoClient
  11. 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

    Definition Classes
    ImplArangoClient
  12. 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

    Definition Classes
    ImplArangoClient
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def handleResponse[O](response: ByteVector)(implicit arg0: VPackDecoder[O]): F[ArangoResponse[O]]
    Attributes
    protected
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def login(username: String, password: String): F[ArangoResponse[Error]]

    authenticate with arango server

    authenticate with arango server

    Definition Classes
    ImplArangoClient
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. val server: ArangoServer[F]

    arangodb server api

    arangodb server api

    Definition Classes
    ImplArangoClient
  23. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  24. val system: ArangoDatabase[F]

    _system database api

    _system database api

    Definition Classes
    ImplArangoClient
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from ArangoClient[F]

Inherited from AnyRef

Inherited from Any

Ungrouped