scodec

protocols

package protocols

Source
package.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. protocols
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. case class MacAddress(value: ByteVector) extends Product with Serializable

  2. type TimeSeries[+A] = Process[Task, TimeSeriesValue[A]]

    A stream of timestamped values or clock ticks.

    A stream of timestamped values or clock ticks.

    Values are represented as right values in a TimeStamped[Unit \/ A], whereas clock ticks are represented as left values. This encoding allows for an indication of time passage with no observed values.

    Generally, time series appear in increasing order, and many combinators that work with time series will rely on that. For streams that are globally ordered, but not locally ordered, i.e., near adjacent values might be out of order but values at great distance from each other are ordered, consider using TimeStamped.reorderLocally to adjust.

  3. type TimeSeriesTransducer[-A, +B] = Process[Is, TimeSeriesValue[B]]

    Alias for a stream transducer on time series values.

  4. type TimeSeriesValue[+A] = TimeStamped[\/[Unit, A]]

    A single value in a TimeSeries.

    A single value in a TimeSeries. Provides a timestamp along with either a value of type A or a clock tick (represented by a left unit).

  5. case class TimeStamped[+A](time: DateTime, value: A) extends Product with Serializable

    Wrapper that associates a time with a value.

Value Members

  1. object BuildInfo extends Product with Serializable

    This object was generated by sbt-buildinfo.

  2. object MacAddress extends Serializable

  3. object TimeSeries

    Companion for TimeSeries.

  4. object TimeSeriesTransducer

    Companion for TimeSeriesTransducer.

  5. object TimeSeriesValue

    Companion for TimeSeriesValue.

  6. object TimeStamped extends Serializable

  7. package ip

  8. package mpeg

  9. package pcap

    Protocol that describes libpcap files.

    Protocol that describes libpcap files.

    See also

    http://wiki.wireshark.org/Development/LibpcapFileFormat

  10. object process1ext

    General purpose combinators for working with Process1 that are not included in scalaz-stream.

Inherited from AnyRef

Inherited from Any

Ungrouped