com.twitter.summingbird.online

Queue

abstract class Queue[T] extends AnyRef

Use this class with a thread-safe queue to receive results from futures in one thread. Storm needs us to touch it's code in one event path (via the execute method in bolts)

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

Instance Constructors

  1. new Queue()

Abstract Value Members

  1. abstract def add(t: T): Unit

    These are the only two methods to implement.

    These are the only two methods to implement. these must be thread-safe.

    Attributes
    protected
  2. abstract def pollNonBlocking: Option[T]

    Attributes
    protected

Concrete Value Members

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

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

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

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

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

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

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def dequeueAll(fn: (T) ⇒ Boolean): Seq[T]

  9. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def foldLeft[V](init: V)(fn: (V, T) ⇒ V): V

    Annotations
    @tailrec()
  13. final def foreach(fn: (T) ⇒ Unit): Unit

    Annotations
    @tailrec()
  14. final def getClass(): Class[_]

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

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

    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  20. def poll: Option[T]

    check if something is ready now

  21. def put(item: T): Int

  22. def putAll(items: TraversableOnce[T]): Int

    Returns the size immediately after the put

  23. def size: Int

    Obviously, this might not be the same by the time you call trimTo or poll

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

    Definition Classes
    AnyRef
  25. def take(maxSeqSize: Int): Seq[T]

    Take items currently in the queue up to the max sequence size we want to return Due to threading/muliple readers/writers this will not be an exact size

  26. def toSeq: Seq[T]

    Take all the items currently in the queue

  27. def toString(): String

    Definition Classes
    AnyRef → Any
  28. def trimTo(maxLength: Int): Seq[T]

    Take enough elements to get .

    Take enough elements to get .size == maxLength

  29. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped