akka.util

ClassLoaderObjectInputStream

class ClassLoaderObjectInputStream extends ObjectInputStream

ClassLoaderObjectInputStream tries to utilize the provided ClassLoader to load Classes and falls back to ObjectInputStreams resolver.

Linear Supertypes
ObjectInputStream, ObjectStreamConstants, ObjectInput, DataInput, InputStream, Closeable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ClassLoaderObjectInputStream
  2. ObjectInputStream
  3. ObjectStreamConstants
  4. ObjectInput
  5. DataInput
  6. InputStream
  7. Closeable
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ClassLoaderObjectInputStream(classLoader: ClassLoader, is: InputStream)

    classLoader

    - the ClassLoader which is to be used primarily

    is

    - the InputStream that is wrapped

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def available(): Int

    Definition Classes
    ObjectInputStream → ObjectInput → InputStream
    Annotations
    @throws()
  8. def clone(): AnyRef

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

    Definition Classes
    ObjectInputStream → ObjectInput → InputStream → Closeable
    Annotations
    @throws()
  10. def defaultReadObject(): Unit

    Definition Classes
    ObjectInputStream
    Annotations
    @throws() @throws()
  11. def enableResolveObject(arg0: Boolean): Boolean

    Attributes
    protected[java.io]
    Definition Classes
    ObjectInputStream
    Annotations
    @throws()
  12. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  15. final def getClass(): Class[_]

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

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

    Definition Classes
    Any
  18. def mark(arg0: Int): Unit

    Definition Classes
    InputStream
  19. def markSupported(): Boolean

    Definition Classes
    InputStream
  20. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  23. def read(arg0: Array[Byte], arg1: Int, arg2: Int): Int

    Definition Classes
    ObjectInputStream → ObjectInput → InputStream
    Annotations
    @throws()
  24. def read(): Int

    Definition Classes
    ObjectInputStream → ObjectInput → InputStream
    Annotations
    @throws()
  25. def read(arg0: Array[Byte]): Int

    Definition Classes
    InputStream
    Annotations
    @throws()
  26. def readBoolean(): Boolean

    Definition Classes
    ObjectInputStream → DataInput
    Annotations
    @throws()
  27. def readByte(): Byte

    Definition Classes
    ObjectInputStream → DataInput
    Annotations
    @throws()
  28. def readChar(): Char

    Definition Classes
    ObjectInputStream → DataInput
    Annotations
    @throws()
  29. def readClassDescriptor(): ObjectStreamClass

    Attributes
    protected[java.io]
    Definition Classes
    ObjectInputStream
    Annotations
    @throws() @throws()
  30. def readDouble(): Double

    Definition Classes
    ObjectInputStream → DataInput
    Annotations
    @throws()
  31. def readFields(): GetField

    Definition Classes
    ObjectInputStream
    Annotations
    @throws() @throws()
  32. def readFloat(): Float

    Definition Classes
    ObjectInputStream → DataInput
    Annotations
    @throws()
  33. def readFully(arg0: Array[Byte], arg1: Int, arg2: Int): Unit

    Definition Classes
    ObjectInputStream → DataInput
    Annotations
    @throws()
  34. def readFully(arg0: Array[Byte]): Unit

    Definition Classes
    ObjectInputStream → DataInput
    Annotations
    @throws()
  35. def readInt(): Int

    Definition Classes
    ObjectInputStream → DataInput
    Annotations
    @throws()
  36. def readLong(): Long

    Definition Classes
    ObjectInputStream → DataInput
    Annotations
    @throws()
  37. final def readObject(): AnyRef

    Definition Classes
    ObjectInputStream → ObjectInput
    Annotations
    @throws() @throws()
  38. def readObjectOverride(): AnyRef

    Attributes
    protected[java.io]
    Definition Classes
    ObjectInputStream
    Annotations
    @throws() @throws()
  39. def readShort(): Short

    Definition Classes
    ObjectInputStream → DataInput
    Annotations
    @throws()
  40. def readStreamHeader(): Unit

    Attributes
    protected[java.io]
    Definition Classes
    ObjectInputStream
    Annotations
    @throws() @throws()
  41. def readUTF(): String

    Definition Classes
    ObjectInputStream → DataInput
    Annotations
    @throws()
  42. def readUnshared(): AnyRef

    Definition Classes
    ObjectInputStream
    Annotations
    @throws() @throws()
  43. def readUnsignedByte(): Int

    Definition Classes
    ObjectInputStream → DataInput
    Annotations
    @throws()
  44. def readUnsignedShort(): Int

    Definition Classes
    ObjectInputStream → DataInput
    Annotations
    @throws()
  45. def registerValidation(arg0: ObjectInputValidation, arg1: Int): Unit

    Definition Classes
    ObjectInputStream
    Annotations
    @throws() @throws()
  46. def reset(): Unit

    Definition Classes
    InputStream
    Annotations
    @throws()
  47. def resolveClass(objectStreamClass: ObjectStreamClass): Class[_]

    Attributes
    protected
    Definition Classes
    ClassLoaderObjectInputStream → ObjectInputStream
  48. def resolveObject(arg0: Any): AnyRef

    Attributes
    protected[java.io]
    Definition Classes
    ObjectInputStream
    Annotations
    @throws()
  49. def resolveProxyClass(arg0: Array[String]): Class[_]

    Attributes
    protected[java.io]
    Definition Classes
    ObjectInputStream
    Annotations
    @throws() @throws()
  50. def skip(arg0: Long): Long

    Definition Classes
    InputStream
    Annotations
    @throws()
  51. def skipBytes(arg0: Int): Int

    Definition Classes
    ObjectInputStream → DataInput
    Annotations
    @throws()
  52. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  53. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Deprecated Value Members

  1. def readLine(): String

    Definition Classes
    ObjectInputStream → DataInput
    Annotations
    @Deprecated @deprecated @throws()
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from ObjectInputStream

Inherited from ObjectStreamConstants

Inherited from ObjectInput

Inherited from DataInput

Inherited from InputStream

Inherited from Closeable

Inherited from AnyRef

Inherited from Any

Ungrouped