InAux

sealed trait InAux[A] extends In[A]
trait In[A]
trait InHandler
trait InOut
trait Resource
class Object
trait Matchable
class Any
trait InDAux
trait InIAux
trait InLAux

Type members

Inherited types

type E = E[A]
Inherited from:
In

Value members

Abstract methods

def isConstant: Boolean

Returns true if the auxiliary input is completed (and closed) and from now on the same constant value will be returned. Similar to isDone on Main handlers, although an auxiliary handler will never call back directly if the input is closed.

Returns true if the auxiliary input is completed (and closed) and from now on the same constant value will be returned. Similar to isDone on Main handlers, although an auxiliary handler will never call back directly if the input is closed.

def value: A

Inherited methods

def available: Int

The number of further input or output frames available.

The number of further input or output frames available.

Inherited from:
InOut
def free(): Unit
Inherited from:
Resource
def hasNext: Boolean

Whether further input or output is available.

Whether further input or output is available.

Inherited from:
InOut
def inlet: Inlet[E]
Inherited from:
In
def next(): A

Returns the next input value and advances the internal offset. This may result in the old buffer being freed and a new buffer being grabbed, so one should always go back to check hasNext or available in the same loop, until the input is exhausted.

Returns the next input value and advances the internal offset. This may result in the old buffer being freed and a new buffer being grabbed, so one should always go back to check hasNext or available in the same loop, until the input is exhausted.

Inherited from:
In
@throws(classOf[Exception])
def onPush(): Unit
Inherited from:
InHandler
@throws(classOf[Exception])
def onUpstreamFailure(ex: Throwable): Unit
Inherited from:
InHandler
@throws(classOf[Exception])
def onUpstreamFinish(): Unit
Inherited from:
InHandler
def peek: A

Returns the next input value without advancing the internal offset.

Returns the next input value without advancing the internal offset.

Inherited from:
In