In

sealed trait In[A] extends InOut with InHandler
trait InHandler
trait InOut
trait Resource
class Object
trait Matchable
class Any
trait InAux[A]
trait InDAux
trait InIAux
trait InLAux
trait InMain[A]
trait InDMain
trait InIMain
trait InLMain

Type members

Types

type E = E[A]

Value members

Abstract methods

def inlet: Inlet[E]
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.

def peek: A

Returns the next input value without advancing the internal offset.

Returns the next input value without advancing the internal offset.

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
@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