BoundedQueue

dev.tauri.choam.async.BoundedQueue
See theBoundedQueue companion object
abstract class BoundedQueue[F[_], A] extends AsyncQueueSource[F, A], BoundedQueueSink[F, A], QueueSourceSink[A]

Attributes

Companion
object
Source
BoundedQueue.scala
Graph
Supertypes
trait QueueSourceSink[A]
trait BoundedQueueSink[F, A]
trait QueueSink[A]
trait AsyncQueueSource[F, A]
trait QueueSource[A]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Abstract methods

def bound: Int

Attributes

Source
BoundedQueue.scala
def size: Axn[Int]

Attributes

Source
BoundedQueue.scala
def toCats: Queue[F, A]

Attributes

Source
BoundedQueue.scala

Inherited methods

def deque[AA >: A]: F[AA]

Attributes

Inherited from:
AsyncQueueSource
Source
AsyncQueue.scala
def enqueue(a: A): F[Unit]

Attributes

Inherited from:
BoundedQueueSink
Source
AsyncQueue.scala
def tryDeque: Axn[Option[A]]

Attributes

Inherited from:
QueueSource
Source
Queue.scala

Attributes

Inherited from:
QueueSink
Source
Queue.scala