Packages

final class CollectedMessage extends Message with Iterable[IpfixSet]

The CollectedMessage class interprets a ByteBuffer to provide an Iterator over the IpfixSets in the buffer.

See also

The companion object for more details

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CollectedMessage
  2. Iterable
  3. IterableFactoryDefaults
  4. IterableOps
  5. IterableOnceOps
  6. IterableOnce
  7. Message
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ++[B >: IpfixSet](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  6. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  7. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  11. final def coll: CollectedMessage.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  12. def collect[B](pf: PartialFunction[IpfixSet, B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  13. def collectFirst[B](pf: PartialFunction[IpfixSet, B]): Option[B]
    Definition Classes
    IterableOnceOps
  14. def concat[B >: IpfixSet](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
  15. def copyToArray[B >: IpfixSet](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  16. def copyToArray[B >: IpfixSet](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  17. def copyToArray[B >: IpfixSet](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  18. def corresponds[B](that: IterableOnce[B])(p: (IpfixSet, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  19. def count(p: (IpfixSet) => Boolean): Int
    Definition Classes
    IterableOnceOps
  20. def dataRecordCount: Int

    Returns the number of data records in this Message.

    Returns the number of data records in this Message.

    returns

    the count of data records

    Definition Classes
    CollectedMessageMessage
  21. def drop(n: Int): Iterable[IpfixSet]
    Definition Classes
    IterableOps → IterableOnceOps
  22. def dropRight(n: Int): Iterable[IpfixSet]
    Definition Classes
    IterableOps
  23. def dropWhile(p: (IpfixSet) => Boolean): Iterable[IpfixSet]
    Definition Classes
    IterableOps → IterableOnceOps
  24. def empty: Iterable[IpfixSet]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  25. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  27. def exists(p: (IpfixSet) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  28. def exportEpochMilliseconds: Long

    Gets the export time of the message, as a number of milliseconds since 1970-01-01T00:00:00.

    Gets the export time of the message, as a number of milliseconds since 1970-01-01T00:00:00.

    returns

    export time in milliseconds

    Definition Classes
    CollectedMessageMessage
  29. def exportEpochSeconds: Long

    Gets the export time of the message, as a number of seconds since 1970-01-01T00:00:00.

    Gets the export time of the message, as a number of seconds since 1970-01-01T00:00:00.

    returns

    export time in seconds

    Definition Classes
    CollectedMessageMessage
  30. def exportTime: Instant

    Gets the export time of the message.

    Gets the export time of the message.

    returns

    message export time

    Definition Classes
    CollectedMessageMessage
  31. def filter(pred: (IpfixSet) => Boolean): Iterable[IpfixSet]
    Definition Classes
    IterableOps → IterableOnceOps
  32. def filterNot(pred: (IpfixSet) => Boolean): Iterable[IpfixSet]
    Definition Classes
    IterableOps → IterableOnceOps
  33. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  34. def find(p: (IpfixSet) => Boolean): Option[IpfixSet]
    Definition Classes
    IterableOnceOps
  35. def flatMap[B](f: (IpfixSet) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  36. def flatten[B](implicit asIterable: (IpfixSet) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  37. def fold[A1 >: IpfixSet](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  38. def foldLeft[B](z: B)(op: (B, IpfixSet) => B): B
    Definition Classes
    IterableOnceOps
  39. def foldRight[B](z: B)(op: (IpfixSet, B) => B): B
    Definition Classes
    IterableOnceOps
  40. def forall(p: (IpfixSet) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  41. def foreach[U](f: (IpfixSet) => U): Unit
    Definition Classes
    IterableOnceOps
  42. def fromSpecific(coll: IterableOnce[IpfixSet]): Iterable[IpfixSet]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  43. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  44. def groupBy[K](f: (IpfixSet) => K): Map[K, Iterable[IpfixSet]]
    Definition Classes
    IterableOps
  45. def groupMap[K, B](key: (IpfixSet) => K)(f: (IpfixSet) => B): Map[K, Iterable[B]]
    Definition Classes
    IterableOps
  46. def groupMapReduce[K, B](key: (IpfixSet) => K)(f: (IpfixSet) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  47. def grouped(size: Int): Iterator[Iterable[IpfixSet]]
    Definition Classes
    IterableOps
  48. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  49. def head: IpfixSet
    Definition Classes
    IterableOps
  50. def headOption: Option[IpfixSet]
    Definition Classes
    IterableOps
  51. def init: Iterable[IpfixSet]
    Definition Classes
    IterableOps
  52. def inits: Iterator[Iterable[IpfixSet]]
    Definition Classes
    IterableOps
  53. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  54. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  55. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  56. def iterableFactory: IterableFactory[Iterable]
    Definition Classes
    Iterable → IterableOps
  57. def iterator: Iterator[IpfixSet]

    Returns an Iterator that may be used to iterate over the IpfixSets in this Message.

    Returns an Iterator that may be used to iterate over the IpfixSets in this Message.

    Definition Classes
    CollectedMessage → IterableOnce
  58. def knownSize: Int
    Definition Classes
    IterableOnce
  59. def last: IpfixSet
    Definition Classes
    IterableOps
  60. def lastOption: Option[IpfixSet]
    Definition Classes
    IterableOps
  61. def lazyZip[B](that: Iterable[B]): LazyZip2[IpfixSet, B, CollectedMessage.this.type]
    Definition Classes
    Iterable
  62. def map[B](f: (IpfixSet) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  63. def max[B >: IpfixSet](implicit ord: Ordering[B]): IpfixSet
    Definition Classes
    IterableOnceOps
  64. def maxBy[B](f: (IpfixSet) => B)(implicit cmp: Ordering[B]): IpfixSet
    Definition Classes
    IterableOnceOps
  65. def maxByOption[B](f: (IpfixSet) => B)(implicit cmp: Ordering[B]): Option[IpfixSet]
    Definition Classes
    IterableOnceOps
  66. def maxOption[B >: IpfixSet](implicit ord: Ordering[B]): Option[IpfixSet]
    Definition Classes
    IterableOnceOps
  67. def min[B >: IpfixSet](implicit ord: Ordering[B]): IpfixSet
    Definition Classes
    IterableOnceOps
  68. def minBy[B](f: (IpfixSet) => B)(implicit cmp: Ordering[B]): IpfixSet
    Definition Classes
    IterableOnceOps
  69. def minByOption[B](f: (IpfixSet) => B)(implicit cmp: Ordering[B]): Option[IpfixSet]
    Definition Classes
    IterableOnceOps
  70. def minOption[B >: IpfixSet](implicit ord: Ordering[B]): Option[IpfixSet]
    Definition Classes
    IterableOnceOps
  71. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  72. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  73. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  74. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  75. def newSpecificBuilder: Builder[IpfixSet, Iterable[IpfixSet]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  76. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  77. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  78. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  79. def observationID: Int

    Gets the observation domain identifier associated with the message.

    Gets the observation domain identifier associated with the message.

    returns

    the observation domain id

    Definition Classes
    CollectedMessageMessage
  80. final def octetLength: Int

    The length of the Message in octets.

  81. def partition(p: (IpfixSet) => Boolean): (Iterable[IpfixSet], Iterable[IpfixSet])
    Definition Classes
    IterableOps
  82. def partitionMap[A1, A2](f: (IpfixSet) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  83. def product[B >: IpfixSet](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  84. def reduce[B >: IpfixSet](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  85. def reduceLeft[B >: IpfixSet](op: (B, IpfixSet) => B): B
    Definition Classes
    IterableOnceOps
  86. def reduceLeftOption[B >: IpfixSet](op: (B, IpfixSet) => B): Option[B]
    Definition Classes
    IterableOnceOps
  87. def reduceOption[B >: IpfixSet](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  88. def reduceRight[B >: IpfixSet](op: (IpfixSet, B) => B): B
    Definition Classes
    IterableOnceOps
  89. def reduceRightOption[B >: IpfixSet](op: (IpfixSet, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  90. def reversed: Iterable[IpfixSet]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  91. def scan[B >: IpfixSet](z: B)(op: (B, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  92. def scanLeft[B](z: B)(op: (B, IpfixSet) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  93. def scanRight[B](z: B)(op: (IpfixSet, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  94. def sequenceNumber: Long

    Gets the sequence number of the message.

    Gets the sequence number of the message. The sequence number is unique per domain, and is the complete number of data records that have been sent in the session prior to this message. It can be used to calculate statistics about missing data records.

    returns

    the sequence number

    Definition Classes
    CollectedMessageMessage
  95. def session: Session

    Returns a session that can be used to interpret template ids in this message.

    Returns a session that can be used to interpret template ids in this message.

    returns

    the session associated with this message

    Definition Classes
    CollectedMessageMessage
  96. def size: Int
    Definition Classes
    IterableOnceOps
  97. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  98. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  99. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  100. def slice(from: Int, until: Int): Iterable[IpfixSet]
    Definition Classes
    IterableOps → IterableOnceOps
  101. def sliding(size: Int, step: Int): Iterator[Iterable[IpfixSet]]
    Definition Classes
    IterableOps
  102. def sliding(size: Int): Iterator[Iterable[IpfixSet]]
    Definition Classes
    IterableOps
  103. def span(p: (IpfixSet) => Boolean): (Iterable[IpfixSet], Iterable[IpfixSet])
    Definition Classes
    IterableOps → IterableOnceOps
  104. def splitAt(n: Int): (Iterable[IpfixSet], Iterable[IpfixSet])
    Definition Classes
    IterableOps → IterableOnceOps
  105. def stepper[S <: Stepper[_]](implicit shape: StepperShape[IpfixSet, S]): S
    Definition Classes
    IterableOnce
  106. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
    Annotations
    @deprecatedOverriding()
  107. def sum[B >: IpfixSet](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  108. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  109. def tail: Iterable[IpfixSet]
    Definition Classes
    IterableOps
  110. def tails: Iterator[Iterable[IpfixSet]]
    Definition Classes
    IterableOps
  111. def take(n: Int): Iterable[IpfixSet]
    Definition Classes
    IterableOps → IterableOnceOps
  112. def takeRight(n: Int): Iterable[IpfixSet]
    Definition Classes
    IterableOps
  113. def takeWhile(p: (IpfixSet) => Boolean): Iterable[IpfixSet]
    Definition Classes
    IterableOps → IterableOnceOps
  114. def tapEach[U](f: (IpfixSet) => U): Iterable[IpfixSet]
    Definition Classes
    IterableOps → IterableOnceOps
  115. def to[C1](factory: Factory[IpfixSet, C1]): C1
    Definition Classes
    IterableOnceOps
  116. def toArray[B >: IpfixSet](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  117. final def toBuffer[B >: IpfixSet]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  118. def toIndexedSeq: IndexedSeq[IpfixSet]
    Definition Classes
    IterableOnceOps
  119. def toList: List[IpfixSet]
    Definition Classes
    IterableOnceOps
  120. def toMap[K, V](implicit ev: <:<[IpfixSet, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  121. def toSeq: Seq[IpfixSet]
    Definition Classes
    IterableOnceOps
  122. def toSet[B >: IpfixSet]: Set[B]
    Definition Classes
    IterableOnceOps
  123. def toString(): String
    Definition Classes
    CollectedMessage → Iterable → AnyRef → Any
  124. def toVector: Vector[IpfixSet]
    Definition Classes
    IterableOnceOps
  125. val transport: AnyRef
  126. def transpose[B](implicit asIterable: (IpfixSet) => Iterable[B]): Iterable[Iterable[B]]
    Definition Classes
    IterableOps
  127. def unzip[A1, A2](implicit asPair: (IpfixSet) => (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  128. def unzip3[A1, A2, A3](implicit asTriple: (IpfixSet) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    IterableOps
  129. def view: View[IpfixSet]
    Definition Classes
    IterableOps
  130. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  131. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  132. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  133. def withFilter(p: (IpfixSet) => Boolean): WithFilter[IpfixSet, Iterable]
    Definition Classes
    IterableOps
  134. def zip[B](that: IterableOnce[B]): Iterable[(IpfixSet, B)]
    Definition Classes
    IterableOps
  135. def zipAll[A1 >: IpfixSet, B](that: Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
    Definition Classes
    IterableOps
  136. def zipWithIndex: Iterable[(IpfixSet, Int)]
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

  1. def ++:[B >: IpfixSet](that: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  2. final def /:[B](z: B)(op: (B, IpfixSet) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  3. final def :\[B](z: B)(op: (IpfixSet, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  4. def aggregate[B](z: => B)(seqop: (B, IpfixSet) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  5. def companion: IterableFactory[Iterable]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  6. final def copyToBuffer[B >: IpfixSet](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  7. def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  8. final def repr: Iterable[IpfixSet]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  9. def seq: CollectedMessage.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  10. final def toIterable: CollectedMessage.this.type
    Definition Classes
    Iterable → IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.7) toIterable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

  11. final def toIterator: Iterator[IpfixSet]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  12. final def toStream: Stream[IpfixSet]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  13. final def toTraversable: Traversable[IpfixSet]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) toTraversable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

  14. def view(from: Int, until: Int): View[IpfixSet]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

Inherited from Iterable[IpfixSet]

Inherited from IterableOnce[IpfixSet]

Inherited from Message

Inherited from AnyRef

Inherited from Any

Ungrouped