net.sf.asyncobjects.asyncscala.control.builders

AllForEnumeratorBuilder

class AllForEnumeratorBuilder [I, T] extends AllForBuilder[T]

AllFor construct that allows folding multiple results received

Linear Supertypes
AllForBuilder[T], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. AllForEnumeratorBuilder
  2. AllForBuilder
  3. AnyRef
  4. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new AllForEnumeratorBuilder (enumerator: OutcomeEnumerator[I], body: (I) ⇒ Promise[T])

Value Members

  1. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def == (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  5. def == (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  6. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  7. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  9. def equals (arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. def foldAny [R] (init: R)(foldBody: (R, T) ⇒ Promise[R]): Promise[R]

    Fold values coming in any order

    Fold values coming in any order

    Definition Classes
    AllForBuilder
  12. def foldLeft [R] (init: R)(foldBody: (R, T) ⇒ Promise[R]): Promise[R]

    Do left folding on the elements

    Do left folding on the elements

    init

    the initial value for the folding operation

    foldBody

    the fold operation

    returns

    the promise for the fold result

    Definition Classes
    AllForBuilder
  13. def foldRight [R] (last: R)(foldBody: (T, R) ⇒ Promise[R]): Promise[R]

    Do the right folding on the elements

    Do the right folding on the elements

    foldBody

    the fold operation

    returns

    the promise for the fold result

    Definition Classes
    AllForBuilder
  14. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef
  15. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  16. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  17. def loopStream (loopBody: (Promise[T]) ⇒ Unit): Promise[Unit]

    Loop stream providing the promise returned from body

    Loop stream providing the promise returned from body

    Attributes
    final
    Definition Classes
    AllForEnumeratorBuilderAllForBuilder
  18. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  19. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  20. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  21. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  22. def toArrayBuffer : Promise[ArrayBuffer[T]]

    Construct array buffer from from values (uses the left fold)

    Construct array buffer from from values (uses the left fold)

    returns

    the promise for array buffer

    Definition Classes
    AllForBuilder
  23. def toList : Promise[List[T]]

    Construct the result list using the right folding on the elements

    Construct the result list using the right folding on the elements

    returns

    the promise for the list

    Definition Classes
    AllForBuilder
  24. def toString (): String

    Definition Classes
    AnyRef → Any
  25. def toUnit : Promise[Unit]

    Construct unit value from all operation

    Construct unit value from all operation

    returns

    the promise for array buffer

    Definition Classes
    AllForBuilder
  26. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AllForBuilder[T]

Inherited from AnyRef

Inherited from Any