ArangoCursorSource

avokka.arangodb.akka.ArangoCursorSource
final class ArangoCursorSource[V, T](query: ArangoQuery[Future, V])(implicit decoder: VPackDecoder[T]) extends GraphStage[SourceShape[T]]

Attributes

Graph
Supertypes
class GraphStage[SourceShape[T]]
class GraphStageWithMaterializedValue[SourceShape[T], NotUsed]
trait Graph[SourceShape[T], NotUsed]
class Object
trait Matchable
class Any
Show all

Members list

Type members

Inherited types

type Shape = S

Type-level accessor for the shape parameter of this graph.

Type-level accessor for the shape parameter of this graph.

Attributes

Inherited from:
Graph

Value members

Concrete methods

override def createLogic(inheritedAttributes: Attributes): GraphStageLogic

Attributes

Definition Classes
GraphStage

Inherited methods

def addAttributes(attr: Attributes): Graph[S, M]

Add the given attributes to this Graph. If the specific attribute was already present on this graph this means the added attribute will be more specific than the existing one. If this Source is a composite of multiple graphs, new attributes on the composite will be less specific than attributes set directly on the individual graphs of the composite.

Add the given attributes to this Graph. If the specific attribute was already present on this graph this means the added attribute will be more specific than the existing one. If this Source is a composite of multiple graphs, new attributes on the composite will be less specific than attributes set directly on the individual graphs of the composite.

Attributes

Inherited from:
Graph
def async(dispatcher: String, inputBufferSize: Int): Graph[S, M]

Put an asynchronous boundary around this Graph

Put an asynchronous boundary around this Graph

Value parameters

dispatcher

Run the graph on this dispatcher

inputBufferSize

Set the input buffer to this size for the graph

Attributes

Inherited from:
Graph
def async(dispatcher: String): Graph[S, M]

Put an asynchronous boundary around this Graph

Put an asynchronous boundary around this Graph

Value parameters

dispatcher

Run the graph on this dispatcher

Attributes

Inherited from:
Graph
def async: Graph[S, M]

Put an asynchronous boundary around this Graph

Put an asynchronous boundary around this Graph

Attributes

Inherited from:
Graph
final override def createLogicAndMaterializedValue(inheritedAttributes: Attributes): (GraphStageLogic, NotUsed)

Attributes

Definition Classes
GraphStage -> GraphStageWithMaterializedValue
Inherited from:
GraphStage
def getAttributes: Attributes

Attributes

Inherited from:
Graph
protected def initialAttributes: Attributes

Attributes

Inherited from:
GraphStageWithMaterializedValue
def named(name: String): Graph[S, M]

Specifies the name of the Graph. If the name is null or empty the name is ignored, i.e. #none is returned.

Specifies the name of the Graph. If the name is null or empty the name is ignored, i.e. #none is returned.

Attributes

Inherited from:
Graph
final override def withAttributes(attr: Attributes): Graph[S, M]

Replace the attributes of this Flow with the given ones. If this Flow is a composite of multiple graphs, new attributes on the composite will be less specific than attributes set directly on the individual graphs of the composite.

Replace the attributes of this Flow with the given ones. If this Flow is a composite of multiple graphs, new attributes on the composite will be less specific than attributes set directly on the individual graphs of the composite.

Attributes

Definition Classes
GraphStageWithMaterializedValue -> Graph
Inherited from:
GraphStageWithMaterializedValue

Concrete fields

val out: Outlet[T]
override val shape: SourceShape[T]

The shape of a graph is all that is externally visible: its inlets and outlets.

The shape of a graph is all that is externally visible: its inlets and outlets.

Attributes