CommonReader

class CommonReader(nested: Reader[A]) extends CommonBase[A]
class CommonBase[A]
class Object
trait Matchable
class Any

Value members

Concrete methods

def intercept(readFun: Try[A] => Unit): Try[A] => Unit

Inherited methods

def canExpire: Boolean
Inherited from
CommonBase
Source
OrReadChannel.scala
def capture(fromChannel: ReadChannel[F, A]): Capture[Try[A] => Unit]
Inherited from
CommonBase
Source
OrReadChannel.scala
def isExpired(fromChannel: ReadChannel[F, A]): Boolean
Inherited from
CommonBase
Source
OrReadChannel.scala
def markFree(fromChannel: ReadChannel[F, A]): Unit
Inherited from
CommonBase
Source
OrReadChannel.scala
def markUsed(fromChannel: ReadChannel[F, A]): Unit
Inherited from
CommonBase
Source
OrReadChannel.scala
protected
def passIfClosed(v: Try[A], readFun: Try[A] => Unit): Unit
Inherited from
CommonBase
Source
OrReadChannel.scala
protected
def passToNested(v: Try[A], readFun: Try[A] => Unit): Unit
Inherited from
CommonBase
Source
OrReadChannel.scala
protected
def setClosed(): Boolean

Can be called only insed wrapper fun, set current inUse be closed, if n precondition: inUse.get !== null return: true, if bith x and y are closed

Can be called only insed wrapper fun, set current inUse be closed, if n precondition: inUse.get !== null return: true, if bith x and y are closed

Inherited from
CommonBase
Source
OrReadChannel.scala

Inherited fields

val inUse: AtomicReference[ReadChannel[F, A]]
Inherited from
CommonBase
Source
OrReadChannel.scala
val used: AtomicBoolean
Inherited from
CommonBase
Source
OrReadChannel.scala