Packages

t

com.twitter.algebird

AbstractEventuallyAggregator

trait AbstractEventuallyAggregator[A, E, O, C] extends Aggregator[A, Either[E, O], C]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AbstractEventuallyAggregator
  2. Aggregator
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def convert(o: O): E
  2. abstract def leftSemigroup: Semigroup[E]
  3. abstract def mustConvert(o: O): Boolean
  4. abstract def presentLeft(e: E): C
  5. abstract def rightAggregator: Aggregator[A, O, C]
  6. abstract def semigroup: Semigroup[Either[E, O]]
    Definition Classes
    Aggregator

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def andThenPresent[D](present2: (C) => D): Aggregator[A, Either[E, O], D]

    Like calling andThen on the present function

    Like calling andThen on the present function

    Definition Classes
    Aggregator
  5. def append(l: Either[E, O], r: A): Either[E, O]
    Definition Classes
    Aggregator
  6. def appendAll(old: Either[E, O], items: TraversableOnce[A]): Either[E, O]
    Definition Classes
    Aggregator
  7. def apply(inputs: TraversableOnce[A]): C

    This may error if inputs are empty (for Monoid Aggregators it never will, instead you see present(Monoid.zero[B])

    This may error if inputs are empty (for Monoid Aggregators it never will, instead you see present(Monoid.zero[B])

    Definition Classes
    Aggregator
  8. def applyCumulatively[In <: TraversableOnce[A], Out](inputs: In)(implicit bf: CanBuildFrom[In, C, Out]): Out

    This returns the cumulative sum of its inputs, in the same order.

    This returns the cumulative sum of its inputs, in the same order. If the inputs are empty, the result will be empty too.

    Definition Classes
    Aggregator
  9. def applyOption(inputs: TraversableOnce[A]): Option[C]

    This returns None if the inputs are empty

    This returns None if the inputs are empty

    Definition Classes
    Aggregator
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  12. def composePrepare[A1](prepare2: (A1) => A): Aggregator[A1, Either[E, O], C]

    Like calling compose on the prepare function

    Like calling compose on the prepare function

    Definition Classes
    Aggregator
  13. def cumulativeIterator(inputs: Iterator[A]): Iterator[C]

    This returns the cumulative sum of its inputs, in the same order.

    This returns the cumulative sum of its inputs, in the same order. If the inputs are empty, the result will be empty too.

    Definition Classes
    Aggregator
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def join[A2 <: A, B2, C2](that: Aggregator[A2, B2, C2]): Aggregator[A2, (Either[E, O], B2), (C, C2)]

    This allows you to run two aggregators on the same data with a single pass

    This allows you to run two aggregators on the same data with a single pass

    Definition Classes
    Aggregator
  21. def lift: MonoidAggregator[A, Option[Either[E, O]], Option[C]]
    Definition Classes
    Aggregator
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. def prepare(a: A): Right[E, O]
  26. def present(b: Either[E, O]): C
  27. def reduce(items: TraversableOnce[Either[E, O]]): Either[E, O]

    This may error if items is empty.

    This may error if items is empty. To be safe you might use reduceOption if you don't know that items is non-empty

    Definition Classes
    Aggregator
  28. def reduce(l: Either[E, O], r: Either[E, O]): Either[E, O]

    combine two inner values

    combine two inner values

    Definition Classes
    Aggregator
  29. def reduceOption(items: TraversableOnce[Either[E, O]]): Option[Either[E, O]]

    This is the safe version of the above.

    This is the safe version of the above. If the input in empty, return None, else reduce the items

    Definition Classes
    Aggregator
  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. def toFold: Fold[A, Option[C]]

    An Aggregator can be converted to a Fold, but not vice-versa Note, a Fold is more constrained so only do this if you require joining a Fold with an Aggregator to produce a Fold

    An Aggregator can be converted to a Fold, but not vice-versa Note, a Fold is more constrained so only do this if you require joining a Fold with an Aggregator to produce a Fold

    Definition Classes
    Aggregator
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  36. def zip[A2, B2, C2](ag2: Aggregator[A2, B2, C2]): Aggregator[(A, A2), (Either[E, O], B2), (C, C2)]

    This allows you to join two aggregators into one that takes a tuple input, which in turn allows you to chain .composePrepare onto the result if you have an initial input that has to be prepared differently for each of the joined aggregators.

    This allows you to join two aggregators into one that takes a tuple input, which in turn allows you to chain .composePrepare onto the result if you have an initial input that has to be prepared differently for each of the joined aggregators.

    The law here is: ag1.zip(ag2).apply(as.zip(bs)) == (ag1(as), ag2(bs))

    Definition Classes
    Aggregator

Inherited from Aggregator[A, Either[E, O], C]

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped