package async
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- async
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- class ChannelSpec extends Fs2Spec
- class QueueSpec extends Fs2Spec
- class SemaphoreSpec extends Fs2Spec
- class SignalSpec extends Fs2Spec
Value Members
- def boundedQueue[F[_], A](maxSize: Int)(implicit arg0: Async[F]): F[Queue[F, A]]
- def hold[F[_], A](initial: A, source: Stream[F, A])(implicit arg0: Async[F]): Stream[F, Signal[F, A]]
- def holdOption[F[_], A](source: Stream[F, A])(implicit arg0: Async[F]): Stream[F, Signal[F, Option[A]]]
- def semaphore[F[_]](initialCount: Long)(implicit arg0: Async[F]): F[Semaphore[F]]
- def signalOf[F[_], A](initialValue: A)(implicit arg0: Async[F]): F[Signal[F, A]]
- def synchronousQueue[F[_], A](implicit F: Async[F]): F[Queue[F, A]]
- def unboundedQueue[F[_], A](implicit arg0: Async[F]): F[Queue[F, A]]