Class

lchannels

StreamManager

Related Doc: package lchannels

Permalink

abstract class StreamManager extends AnyRef

Base class for stream management and (de)serialization of messages.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StreamManager
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StreamManager(in: InputStream, out: OutputStream)

    Permalink

    in

    Stream of input data

    out

    Stream of output data

Abstract Value Members

  1. abstract def destreamer(): Any

    Permalink

    Read data from in, deserialize an object and return it.

    Read data from in, deserialize an object and return it.

    Exceptions thrown

    Exception if a deserialization error occurs.

  2. abstract def streamer(x: Any): Unit

    Permalink

    Serialize an object and write it into out.

    Serialize an object and write it into out.

    x

    Object to serialize.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def close(): Unit

    Permalink

    Close in and out streams.

    Close in and out streams.

    You could derive this method to perform additional cleanup when closing the StreamManager.

  7. final def destreamer(atMost: Duration)(implicit ec: ExecutionContext): Any

    Permalink

    Read data from in, deserialize an object and return it.

    Read data from in, deserialize an object and return it.

    atMost

    Maximum wait time

    ec

    Execution context where an internal Future will run

    Attributes
    protected[lchannels]
    Exceptions thrown

    Exception if a deserialization error occurs.

    java.util.concurrent.TimeoutException if after waiting for atMost, no message arrives

  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def factory[T]()(implicit ec: ExecutionContext): (StreamIn[T], StreamOut[T])

    Permalink

    Create a pair of I/O stream-based channel endpoints, reading from in and writing to out.

    Create a pair of I/O stream-based channel endpoints, reading from in and writing to out.

    ec

    Execution context for internal Promise/Future handling

  11. final def finalize(): Unit

    Permalink

    Alias for close.

    Alias for close.

    Definition Classes
    StreamManager → AnyRef
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  19. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped