Class

fs2.concurrent.Queue

InPartiallyApplied

Related Doc: package Queue

Permalink

final class InPartiallyApplied[G[_]] extends AnyVal

Source
Queue.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InPartiallyApplied
  2. AnyVal
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new InPartiallyApplied(G: Sync[G])

    Permalink

Value Members

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

    Permalink
    Definition Classes
    Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from InPartiallyApplied[G] to any2stringadd[InPartiallyApplied[G]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (InPartiallyApplied[G], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from InPartiallyApplied[G] to ArrowAssoc[InPartiallyApplied[G]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  6. val G: Sync[G]

    Permalink
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def bounded[F[_], A](maxSize: Int)(implicit F: Concurrent[F]): G[Queue[F, A]]

    Permalink

    Creates a queue with the specified size bound.

  9. def boundedNoneTerminated[F[_], A](maxSize: Int)(implicit F: Concurrent[F]): G[NoneTerminatedQueue[F, A]]

    Permalink

    Creates a bounded queue terminated by enqueueing None.

    Creates a bounded queue terminated by enqueueing None. All elements before None are preserved.

  10. def circularBuffer[F[_], A](maxSize: Int)(implicit F: Concurrent[F]): G[Queue[F, A]]

    Permalink

    Creates a queue which stores the last maxSize enqueued elements and which never blocks on enqueue.

  11. def ensuring(cond: (InPartiallyApplied[G]) ⇒ Boolean, msg: ⇒ Any): InPartiallyApplied[G]

    Permalink
    Implicit information
    This member is added by an implicit conversion from InPartiallyApplied[G] to Ensuring[InPartiallyApplied[G]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (InPartiallyApplied[G]) ⇒ Boolean): InPartiallyApplied[G]

    Permalink
    Implicit information
    This member is added by an implicit conversion from InPartiallyApplied[G] to Ensuring[InPartiallyApplied[G]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ Any): InPartiallyApplied[G]

    Permalink
    Implicit information
    This member is added by an implicit conversion from InPartiallyApplied[G] to Ensuring[InPartiallyApplied[G]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): InPartiallyApplied[G]

    Permalink
    Implicit information
    This member is added by an implicit conversion from InPartiallyApplied[G] to Ensuring[InPartiallyApplied[G]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def fairBounded[F[_], A](maxSize: Int, fairSize: Int)(implicit F: Concurrent[F]): G[Queue[F, A]]

    Permalink

    Created a bounded queue that distributed always at max fairSize elements to any subscriber.

  16. def fairUnbounded[F[_], A](fairSize: Int)(implicit F: Concurrent[F]): G[Queue[F, A]]

    Permalink

    Creates an unbounded queue that distributed always at max fairSize elements to any subscriber.

  17. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from InPartiallyApplied[G] to StringFormat[InPartiallyApplied[G]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  18. def getClass(): Class[_ <: AnyVal]

    Permalink
    Definition Classes
    AnyVal → Any
  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. def noneTerminated[F[_], A](implicit F: Concurrent[F]): G[NoneTerminatedQueue[F, A]]

    Permalink

    Created an unbounded queue terminated by enqueueing None.

    Created an unbounded queue terminated by enqueueing None. All elements before None.

  21. def synchronous[F[_], A](implicit F: Concurrent[F]): G[Queue[F, A]]

    Permalink

    Creates a queue which allows at most a single element to be enqueued at any time.

  22. def synchronousNoneTerminated[F[_], A](implicit F: Concurrent[F]): G[NoneTerminatedQueue[F, A]]

    Permalink

    Like synchronous, except that any enqueue of None will never block and cancels any dequeue operation.

  23. def toString(): String

    Permalink
    Definition Classes
    Any
  24. def unbounded[F[_], A](implicit F: Concurrent[F]): G[Queue[F, A]]

    Permalink

    Creates a queue with no size bound.

  25. def [B](y: B): (InPartiallyApplied[G], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from InPartiallyApplied[G] to ArrowAssoc[InPartiallyApplied[G]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyVal

Inherited from Any

Inherited by implicit conversion any2stringadd from InPartiallyApplied[G] to any2stringadd[InPartiallyApplied[G]]

Inherited by implicit conversion StringFormat from InPartiallyApplied[G] to StringFormat[InPartiallyApplied[G]]

Inherited by implicit conversion Ensuring from InPartiallyApplied[G] to Ensuring[InPartiallyApplied[G]]

Inherited by implicit conversion ArrowAssoc from InPartiallyApplied[G] to ArrowAssoc[InPartiallyApplied[G]]

Ungrouped