InspectableQueue
object InspectableQueue
- Companion
- class
class Object
trait Matchable
class Any
Type members
Classlikes
Value members
Methods
Provides constructors for InspectableQueue with state initialized using
another
another
Sync datatype.This method uses the Partially Applied Type Params technique
{{{
val queue = InspectableQueue.in[SyncIO] .unbounded[IO, String]
}}}
val queue = InspectableQueue.in[SyncIO] .unbounded[IO, String]
}}}
def circularBuffer[F <: ([_$79] =>> Any), A](maxSize: Int)(F: Concurrent[F]): F[InspectableQueue[F, A]]
Creates a queue which stores the last
maxSize enqueued elements and which never blocks on enqueue.