cgta

serland

package serland

Linear Supertypes
OScalaExportsPlat, OScalaExportsShared, SerlandExportsPlat, SerlandExportsShared, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. serland
  2. OScalaExportsPlat
  3. OScalaExportsShared
  4. SerlandExportsPlat
  5. SerlandExportsShared
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type IISeq[+A] = IndexedSeq[A]

    Definition Classes
    OScalaExportsShared
  2. type IMap[K, +V] = Map[K, V]

    Definition Classes
    OScalaExportsShared
  3. type ISMap[K, +V] = SortedMap[K, V]

    Definition Classes
    OScalaExportsShared
  4. type ISSet[A] = Set[A]

    Definition Classes
    OScalaExportsShared
  5. type ISet[A] = Set[A]

    Definition Classes
    OScalaExportsShared
  6. type IVec[+A] = Vector[A]

    Definition Classes
    OScalaExportsShared
  7. type Id[A] = A

    Definition Classes
    OScalaExportsShared
  8. type MMap[K, V] = Map[K, V]

    Definition Classes
    OScalaExportsShared
  9. type MSet[A] = Set[A]

    Definition Classes
    OScalaExportsShared
  10. type OLock = oscala.util.OLock

    Definition Classes
    OScalaExportsShared
  11. type OSeq[+A] = IndexedSeq[A]

    Definition Classes
    OScalaExportsShared
  12. trait SerBuilder extends SerBuilderMacros

  13. trait SerBuilderMacros extends AnyRef

  14. trait SerClass[A] extends SerWritable[A] with SerReadable[A] with SerSchemable[A] with SerGenable[A]

  15. case class SerClassProxy[A](f: () ⇒ SerClass[A]) extends SerClass[A] with Product with Serializable

    This class represents an attempt to overcome circular dependency issues for example when you have a structure something like this: trait NodeOrLeaf case class Node(child : NodeOrLeaf) case class Leaf(x : Int) currently this will lead to stack overflows if you try to define serialization for these classs between the ser for NodeOrLeaf and Node's .ser

    This class represents an attempt to overcome circular dependency issues for example when you have a structure something like this: trait NodeOrLeaf case class Node(child : NodeOrLeaf) case class Leaf(x : Int) currently this will lead to stack overflows if you try to define serialization for these classs between the ser for NodeOrLeaf and Node's .ser

    Used in conjunction with CSerial it looks like this: implicit lazy val ser = proxySerial(forCase(this.apply _))

  16. abstract class SerException extends Exception

  17. case class SerForSerInput(input: () ⇒ SerInput) extends Product with Serializable

  18. trait SerForSerOutput extends AnyRef

  19. trait SerGenable[A] extends AnyRef

  20. trait SerInput extends AnyRef

  21. trait SerOutput extends AnyRef

  22. class SerReadException extends SerException

  23. trait SerReadable[A] extends AnyRef

  24. sealed trait SerSchema extends AnyRef

  25. trait SerSchemable[A] extends AnyRef

  26. trait SerWritable[A] extends AnyRef

  27. class SerWriteException extends SerException

  28. trait SerlandExportsPlat extends AnyRef

  29. trait SerlandExportsShared extends AnyRef

    Mix this into your package object, or whatever you import typically to provide some handy serclass specific implicits

Value Members

  1. val Billion: Long

    Definition Classes
    OScalaExportsShared
  2. val IISeq: IndexedSeq.type

    Definition Classes
    OScalaExportsShared
  3. val IMap: Map.type

    Definition Classes
    OScalaExportsShared
  4. val ISMap: SortedMap.type

    Definition Classes
    OScalaExportsShared
  5. val ISSet: SortedSet.type

    Definition Classes
    OScalaExportsShared
  6. val ISet: Set.type

    Definition Classes
    OScalaExportsShared
  7. val IVec: Vector.type

    Definition Classes
    OScalaExportsShared
  8. val MMap: Map.type

    Definition Classes
    OScalaExportsShared
  9. val MSet: Set.type

    Definition Classes
    OScalaExportsShared
  10. val Million: Long

    Definition Classes
    OScalaExportsShared
  11. val OLock: oscala.util.OLock.type

    Definition Classes
    OScalaExportsShared
  12. val OSeq: IndexedSeq.type

    Definition Classes
    OScalaExportsShared
  13. def READ_ERROR(reason: String, causedBy: Throwable): Nothing

  14. def READ_ERROR(reason: String): Nothing

  15. object SerBasics

  16. object SerBuilder extends SerBuilder

  17. object SerBuilderMacrosImpl

  18. object SerClass extends SerClasses

  19. object SerForSerInput extends Serializable

    This ser class is used when you want to support partially parsing a message.

    This ser class is used when you want to support partially parsing a message.

    This class will copy the underlying data structure to create a new serInput on each call to input().

    This allows you to dispatch to a SerClass.read method dynamically.

  20. object SerForSerOutput

    This ser class is WRITE-ONLY (we need to use the type the system to encode this somehow)

    This ser class is WRITE-ONLY (we need to use the type the system to encode this somehow)

    It allows for dynamically setting the value that will we be encoded.

  21. object SerHints

    Hints that can be used to adjust how backends encode data for performance reasons.

  22. object SerSchema

  23. object SerSchemas

  24. object SerlandExportsShared

  25. val Thousand: Long

    Definition Classes
    OScalaExportsShared
  26. def UNSUPPORTED(reason: String): Nothing

  27. def WRITE_ERROR(reason: String, causedBy: Throwable): Nothing

  28. def WRITE_ERROR(reason: String): Nothing

  29. implicit def addOScalaArrayExtensions[A](a: Array[A]): ArrayExtensions[A]

    Definition Classes
    OScalaExportsShared
  30. implicit def addOScalaBooleanExtensions[A](a: Boolean): BooleanExtensions

    Definition Classes
    OScalaExportsShared
  31. implicit def addOScalaByteExtensions(a: Byte): ByteExtensions

    Definition Classes
    OScalaExportsShared
  32. implicit def addOScalaDoubleExtensions(a: Double): DoubleExtensions

    Definition Classes
    OScalaExportsShared
  33. implicit def addOScalaFunc1Extensions[A, B](a: Function[A, B]): Func1Extensions[A, B]

    Definition Classes
    OScalaExportsShared
  34. implicit def addOScalaFutureExtensions[A](a: Future[A]): FutureExtensions[A]

    Definition Classes
    OScalaExportsShared
  35. implicit def addOScalaIMapExtensions[A, B](a: IMap[A, B]): IMapExtensions[A, B]

    Definition Classes
    OScalaExportsShared
  36. implicit def addOScalaIntExtensions(a: Int): IntExtensions

    Definition Classes
    OScalaExportsShared
  37. implicit def addOScalaIterableExtensions[A](a: Iterable[A]): IterableExtensions[A]

    Definition Classes
    OScalaExportsShared
  38. implicit def addOScalaItrExtensions[A](a: Iterator[A]): IteratorExtensions[A]

    Definition Classes
    OScalaExportsShared
  39. implicit def addOScalaSeqExtensions[A](a: Seq[A]): SeqExtensions[A]

    Definition Classes
    OScalaExportsShared
  40. implicit def addOScalaStringExtensions(a: String): StringExtensions

    Definition Classes
    OScalaExportsShared
  41. implicit def addOScalaTypeAExtensions[A](a: A): TypeAExtensions[A]

    Definition Classes
    OScalaExportsShared
  42. implicit def addSerlandStringExtensions(x: String): SerlandStringExtensions

    Definition Classes
    SerlandExportsShared
  43. implicit def addSerlandTypeAExtensions[A](x: A): SerlandTypeAExtensions[A]

    Definition Classes
    SerlandExportsShared
  44. package backends

  45. val defaultExecutionContext: ExecutionContext

    Definition Classes
    OScalaExportsShared
  46. def error(msg: String): Nothing

    Definition Classes
    OScalaExportsShared
  47. package gen

  48. lazy val inScalaJs: Boolean

    Definition Classes
    OScalaExportsShared
  49. package json

  50. def serClass[A](implicit arg0: SerClass[A]): SerClass[A]

    Definition Classes
    SerlandExportsShared
  51. def serSchema[A](implicit arg0: SerClass[A]): SerSchema

    Definition Classes
    SerlandExportsShared
  52. package testing

  53. def withLock[A](lock: Lock)(blk: ⇒ A): A

Inherited from OScalaExportsPlat

Inherited from OScalaExportsShared

Inherited from SerlandExportsPlat

Inherited from SerlandExportsShared

Inherited from AnyRef

Inherited from Any

Ungrouped