scodec.protocols.mpeg.transport.psi

SectionCodec

class SectionCodec extends Codec[Section]

Source
SectionCodec.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SectionCodec
  2. Codec
  3. GenCodec
  4. Decoder
  5. Encoder
  6. AnyRef
  7. Any
Implicitly
  1. by ValueCodecEnrichedWithHListSupport
  2. by TransformSyntax
  3. by EnrichedCoproductEncoder
  4. by ValueCodecEnrichedWithGenericSupport
  5. by any2stringadd
  6. by StringFormat
  7. by Ensuring
  8. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

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

    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from SectionCodec to any2stringadd[SectionCodec] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (SectionCodec, B)

    Implicit information
    This member is added by an implicit conversion from SectionCodec to ArrowAssoc[SectionCodec] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. def :+:[B](left: Codec[B]): CoproductCodecBuilder[:+:[B, :+:[Section, CNil]], ::[Codec[B], ::[Codec[Section], HNil]], :+:[B, :+:[Section, CNil]]]

    Definition Classes
    Codec
  6. def ::[B](codecB: Codec[B]): Codec[::[B, ::[Section, HNil]]]

    Implicit information
    This member is added by an implicit conversion from SectionCodec to ValueCodecEnrichedWithHListSupport[Section] performed by method ValueCodecEnrichedWithHListSupport in scodec.
    Definition Classes
    ValueCodecEnrichedWithHListSupport
  7. def :~>:[B](codecB: Codec[B])(implicit ev: =:=[Unit, B]): Codec[::[Section, HNil]]

    Implicit information
    This member is added by an implicit conversion from SectionCodec to ValueCodecEnrichedWithHListSupport[Section] performed by method ValueCodecEnrichedWithHListSupport in scodec.
    Definition Classes
    ValueCodecEnrichedWithHListSupport
  8. final def <~[B](codecB: Codec[B])(implicit ev: =:=[Unit, B]): Codec[Section]

    Definition Classes
    Codec
  9. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def >>:~[L <: HList](f: (Section) ⇒ Codec[L]): Codec[::[Section, L]]

    Implicit information
    This member is added by an implicit conversion from SectionCodec to ValueCodecEnrichedWithHListSupport[Section] performed by method ValueCodecEnrichedWithHListSupport in scodec.
    Definition Classes
    ValueCodecEnrichedWithHListSupport
  11. final def >>~[B](f: (Section) ⇒ Codec[B]): Codec[(Section, B)]

    Definition Classes
    Codec
  12. def as[B](implicit as: Transformer[Section, B]): Codec[B]

    Implicit information
    This member is added by an implicit conversion from SectionCodec to TransformSyntax[Codec, Section] performed by method TransformSyntax in scodec.
    Definition Classes
    TransformSyntax
  13. def asDecoder: Decoder[Section]

    Definition Classes
    Decoder
  14. def asEncoder: Encoder[Section]

    Definition Classes
    Encoder
  15. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  16. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  17. final def compact: Codec[Section]

    Definition Classes
    Codec → GenCodec → Encoder
  18. final def complete: Codec[Section]

    Definition Classes
    Codec → GenCodec → Decoder
  19. def contramap[C](f: (C) ⇒ Section): GenCodec[C, Section]

    Definition Classes
    GenCodec → Encoder
  20. def decode(bits: BitVector): \/[Err, (BitVector, Section)]

    Definition Classes
    SectionCodec → Decoder
  21. def decodeOnly[AA >: Section]: Codec[AA]

    Definition Classes
    Decoder
  22. final def decodeValidValue(bits: BitVector): Section

    Definition Classes
    Decoder
  23. final def decodeValue(bits: BitVector): \/[Err, Section]

    Definition Classes
    Decoder
  24. def depacketize: Process1[Packet, PidStamped[\/[DepacketizationError, Section]]]

    Stream transducer that converts packets in to sections.

    Stream transducer that converts packets in to sections.

    The packets may span PID values. De-packetization is performed on each PID and as whole sections are received, reassembled sections are emitted.

    Errors encountered while depacketizing are emitted.

    Upon noticing a PID discontinuity, an error is emitted and PID decoding state is discarded, resulting in any in-progress section decoding to be lost for that PID.

  25. def disableCrcVerification: SectionCodec

  26. final def downcast[B <: Section](implicit arg0: Manifest[B]): Codec[B]

    Definition Classes
    Codec
  27. final def dropLeft[B](codecB: Codec[B])(implicit ev: =:=[Unit, Section]): Codec[B]

    Definition Classes
    Codec
  28. final def dropRight[B](codecB: Codec[B])(implicit ev: =:=[Unit, B]): Codec[Section]

    Definition Classes
    Codec
  29. def econtramap[C](f: (C) ⇒ \/[Err, Section]): GenCodec[C, Section]

    Definition Classes
    GenCodec → Encoder
  30. def emap[C](f: (Section) ⇒ \/[Err, C]): GenCodec[Section, C]

    Definition Classes
    GenCodec → Decoder
  31. def encode(section: Section): \/[Err, BitVector]

    Definition Classes
    SectionCodec → Encoder
  32. def encodeOnly: Codec[Section]

    Definition Classes
    Encoder
  33. final def encodeValid(value: Section): BitVector

    Definition Classes
    Encoder
  34. def ensuring(cond: (SectionCodec) ⇒ Boolean, msg: ⇒ Any): SectionCodec

    Implicit information
    This member is added by an implicit conversion from SectionCodec to Ensuring[SectionCodec] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  35. def ensuring(cond: (SectionCodec) ⇒ Boolean): SectionCodec

    Implicit information
    This member is added by an implicit conversion from SectionCodec to Ensuring[SectionCodec] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  36. def ensuring(cond: Boolean, msg: ⇒ Any): SectionCodec

    Implicit information
    This member is added by an implicit conversion from SectionCodec to Ensuring[SectionCodec] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  37. def ensuring(cond: Boolean): SectionCodec

    Implicit information
    This member is added by an implicit conversion from SectionCodec to Ensuring[SectionCodec] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  38. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  40. final def exmap[B](f: (Section) ⇒ \/[Err, B], g: (B) ⇒ \/[Err, Section]): Codec[B]

    Definition Classes
    Codec
  41. val fa: Codec[Section]

    Implicit information
    This member is added by an implicit conversion from SectionCodec to TransformSyntax[Codec, Section] performed by method TransformSyntax in scodec.
    Definition Classes
    TransformSyntax
  42. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  43. def flatMap[B](f: (Section) ⇒ Decoder[B]): Decoder[B]

    Definition Classes
    Decoder
  44. def flatPrepend[L <: HList](f: (Section) ⇒ Codec[L]): Codec[::[Section, L]]

    Implicit information
    This member is added by an implicit conversion from SectionCodec to ValueCodecEnrichedWithHListSupport[Section] performed by method ValueCodecEnrichedWithHListSupport in scodec.
    Definition Classes
    ValueCodecEnrichedWithHListSupport
  45. final def flatZip[B](f: (Section) ⇒ Codec[B]): Codec[(Section, B)]

    Definition Classes
    Codec
  46. def flatZipHList[B](f: (Section) ⇒ Codec[B]): Codec[::[Section, ::[B, HNil]]]

    Implicit information
    This member is added by an implicit conversion from SectionCodec to ValueCodecEnrichedWithHListSupport[Section] performed by method ValueCodecEnrichedWithHListSupport in scodec.
    Definition Classes
    ValueCodecEnrichedWithHListSupport
  47. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from SectionCodec to StringFormat[SectionCodec] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  48. final def fuse[AA <: Section, BB >: Section](implicit ev: =:=[BB, AA]): Codec[BB]

    Definition Classes
    GenCodec
  49. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  51. final def hlist: Codec[::[Section, HNil]]

    Definition Classes
    Codec
  52. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  53. def map[C](f: (Section) ⇒ C): GenCodec[Section, C]

    Definition Classes
    GenCodec → Decoder
  54. final def narrow[B](f: (Section) ⇒ \/[Err, B], g: (B) ⇒ Section): Codec[B]

    Definition Classes
    Codec
  55. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  58. def packetStreamDecoder: StreamDecoder[PidStamped[\/[DepacketizationError, Section]]]

    Provides a stream decoder that decodes a bitstream of 188 byte MPEG packets in to a stream of sections.

  59. final def pairedWith[B](codecB: Codec[B]): Codec[(Section, B)]

    Definition Classes
    Codec
  60. def pcontramap[C](f: (C) ⇒ Option[Section]): GenCodec[C, Section]

    Definition Classes
    GenCodec → Encoder
  61. def polyxmap[B](p: Poly, q: Poly)(implicit aToB: Aux[p.type, ::[Section, HNil], B], bToA: Aux[q.type, ::[B, HNil], Section]): Codec[B]

    Implicit information
    This member is added by an implicit conversion from SectionCodec to ValueCodecEnrichedWithGenericSupport[Section] performed by method ValueCodecEnrichedWithGenericSupport in scodec.
    Definition Classes
    ValueCodecEnrichedWithGenericSupport
  62. def polyxmap1[B](p: Poly)(implicit aToB: Aux[p.type, ::[Section, HNil], B], bToA: Aux[p.type, ::[B, HNil], Section]): Codec[B]

    Implicit information
    This member is added by an implicit conversion from SectionCodec to ValueCodecEnrichedWithGenericSupport[Section] performed by method ValueCodecEnrichedWithGenericSupport in scodec.
    Definition Classes
    ValueCodecEnrichedWithGenericSupport
  63. def pxmap[B](f: (Section) ⇒ B, g: (B) ⇒ Option[Section]): Codec[B]

    Implicit information
    This member is added by an implicit conversion from SectionCodec to TransformSyntax[Codec, Section] performed by method TransformSyntax in scodec.
    Definition Classes
    TransformSyntax
  64. def selectEncoder[A](implicit inj: Inject[Coproduct with Section, A]): Encoder[A]

    Implicit information
    This member is added by an implicit conversion from SectionCodec to EnrichedCoproductEncoder[Coproduct with Section] performed by method EnrichedCoproductEncoder in scodec.
    Definition Classes
    EnrichedCoproductEncoder
  65. def supporting[A <: Section](implicit c: SectionFragmentCodec[A]): SectionCodec

  66. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  67. def toField[K]: Codec[FieldType[K, Section]]

    Definition Classes
    Codec
  68. def toFieldWithContext[K <: Symbol](k: K): Codec[FieldType[K, Section]]

    Definition Classes
    Codec
  69. def toString(): String

    Definition Classes
    AnyRef → Any
  70. final def unit(zero: Section): Codec[Unit]

    Definition Classes
    Codec
  71. final def unitM(implicit ma: Monoid[Section]): Codec[Unit]

    Definition Classes
    Codec
  72. final def upcast[B >: Section](implicit m: Manifest[Section]): Codec[B]

    Definition Classes
    Codec
  73. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  76. final def widen[B](f: (Section) ⇒ B, g: (B) ⇒ \/[Err, Section]): Codec[B]

    Definition Classes
    Codec
  77. final def withContext(context: String): Codec[Section]

    Definition Classes
    Codec
  78. final def withToString(str: String): Codec[Section]

    Definition Classes
    Codec
  79. final def xmap[B](f: (Section) ⇒ B, g: (B) ⇒ Section): Codec[B]

    Definition Classes
    Codec
  80. final def ~[B](codecB: Codec[B]): Codec[(Section, B)]

    Definition Classes
    Codec
  81. final def ~>[B](codecB: Codec[B])(implicit ev: =:=[Unit, Section]): Codec[B]

    Definition Classes
    Codec
  82. def [B](y: B): (SectionCodec, B)

    Implicit information
    This member is added by an implicit conversion from SectionCodec to ArrowAssoc[SectionCodec] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def exmap[B](f: (Section) ⇒ \/[Err, B], g: (B) ⇒ \/[Err, Section]): Codec[B]

    Implicit information
    This member is added by an implicit conversion from SectionCodec to TransformSyntax[Codec, Section] performed by method TransformSyntax in scodec.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sectionCodec: TransformSyntax[Codec, Section]).exmap(f, g)
    Definition Classes
    TransformSyntax
  2. def narrow[B](f: (Section) ⇒ \/[Err, B], g: (B) ⇒ Section): Codec[B]

    Implicit information
    This member is added by an implicit conversion from SectionCodec to TransformSyntax[Codec, Section] performed by method TransformSyntax in scodec.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sectionCodec: TransformSyntax[Codec, Section]).narrow(f, g)
    Definition Classes
    TransformSyntax
  3. val self: Codec[Section]

    Implicit information
    This member is added by an implicit conversion from SectionCodec to ValueCodecEnrichedWithHListSupport[Section] performed by method ValueCodecEnrichedWithHListSupport in scodec.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (sectionCodec: ValueCodecEnrichedWithHListSupport[Section]).self
    Definition Classes
    ValueCodecEnrichedWithHListSupport
  4. val self: Encoder[Coproduct with Section]

    Implicit information
    This member is added by an implicit conversion from SectionCodec to EnrichedCoproductEncoder[Coproduct with Section] performed by method EnrichedCoproductEncoder in scodec.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (sectionCodec: EnrichedCoproductEncoder[Coproduct with Section]).self
    Definition Classes
    EnrichedCoproductEncoder
  5. val self: Codec[Section]

    Implicit information
    This member is added by an implicit conversion from SectionCodec to ValueCodecEnrichedWithGenericSupport[Section] performed by method ValueCodecEnrichedWithGenericSupport in scodec.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (sectionCodec: ValueCodecEnrichedWithGenericSupport[Section]).self
    Definition Classes
    ValueCodecEnrichedWithGenericSupport
  6. def widen[B](f: (Section) ⇒ B, g: (B) ⇒ \/[Err, Section]): Codec[B]

    Implicit information
    This member is added by an implicit conversion from SectionCodec to TransformSyntax[Codec, Section] performed by method TransformSyntax in scodec.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sectionCodec: TransformSyntax[Codec, Section]).widen(f, g)
    Definition Classes
    TransformSyntax
  7. def xmap[B](f: (Section) ⇒ B, g: (B) ⇒ Section): Codec[B]

    Implicit information
    This member is added by an implicit conversion from SectionCodec to TransformSyntax[Codec, Section] performed by method TransformSyntax in scodec.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sectionCodec: TransformSyntax[Codec, Section]).xmap(f, g)
    Definition Classes
    TransformSyntax

Inherited from Codec[Section]

Inherited from GenCodec[Section, Section]

Inherited from Decoder[Section]

Inherited from Encoder[Section]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion ValueCodecEnrichedWithHListSupport from SectionCodec to ValueCodecEnrichedWithHListSupport[Section]

Inherited by implicit conversion TransformSyntax from SectionCodec to TransformSyntax[Codec, Section]

Inherited by implicit conversion EnrichedCoproductEncoder from SectionCodec to EnrichedCoproductEncoder[Coproduct with Section]

Inherited by implicit conversion ValueCodecEnrichedWithGenericSupport from SectionCodec to ValueCodecEnrichedWithGenericSupport[Section]

Inherited by implicit conversion any2stringadd from SectionCodec to any2stringadd[SectionCodec]

Inherited by implicit conversion StringFormat from SectionCodec to StringFormat[SectionCodec]

Inherited by implicit conversion Ensuring from SectionCodec to Ensuring[SectionCodec]

Inherited by implicit conversion ArrowAssoc from SectionCodec to ArrowAssoc[SectionCodec]

Ungrouped