implicit final class Extensions[T] extends AnyVal
- Alphabetic
 - By Inheritance
 
- Extensions
 - AnyVal
 - Any
 
- Hide All
 - Show All
 
- Public
 - All
 
Instance Constructors
-  new Extensions(target: Subscriber[T])
 
Value Members
- 
      
      
      
        
      
    
      
        final 
        def
      
      
        !=(arg0: Any): Boolean
      
      
      
- Definition Classes
 - Any
 
 - 
      
      
      
        
      
    
      
        final 
        def
      
      
        ##(): Int
      
      
      
- Definition Classes
 - Any
 
 - 
      
      
      
        
      
    
      
        final 
        def
      
      
        ==(arg0: Any): Boolean
      
      
      
- Definition Classes
 - Any
 
 - 
      
      
      
        
      
    
      
        final 
        def
      
      
        asInstanceOf[T0]: T0
      
      
      
- Definition Classes
 - Any
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        feed(subscription: BooleanCancelable, iterator: Iterator[T]): Future[Ack]
      
      
      
Feeds the source Subscriber with elements from the given collection, respecting the contract and returning a
Future[Ack]with the last acknowledgement given after the last emitted element.Feeds the source Subscriber with elements from the given collection, respecting the contract and returning a
Future[Ack]with the last acknowledgement given after the last emitted element.- subscription
 is a BooleanCancelable that will be queried for its cancellation status, but only on asynchronous boundaries, and when it is seen as being
isCanceled, streaming is stopped.- iterator
 is the iterator of items to push downstream
 - 
      
      
      
        
      
    
      
        
        def
      
      
        feed(iterator: Iterator[T]): Future[Ack]
      
      
      
Feeds the source Subscriber with elements from the given collection, respecting the contract and returning a
Future[Ack]with the last acknowledgement given after the last emitted element.Feeds the source Subscriber with elements from the given collection, respecting the contract and returning a
Future[Ack]with the last acknowledgement given after the last emitted element.- iterator
 is the iterator of items to push downstream
 - 
      
      
      
        
      
    
      
        
        def
      
      
        feed(subscription: BooleanCancelable, iterable: Iterable[T]): Future[Ack]
      
      
      
Feeds the source Subscriber with elements from the given collection, respecting the contract and returning a
Future[Ack]with the last acknowledgement given after the last emitted element.Feeds the source Subscriber with elements from the given collection, respecting the contract and returning a
Future[Ack]with the last acknowledgement given after the last emitted element.- subscription
 is a BooleanCancelable that will be queried for its cancellation status, but only on asynchronous boundaries, and when it is seen as being
isCanceled, streaming is stopped.- iterable
 is the collection of items to push downstream
 - 
      
      
      
        
      
    
      
        
        def
      
      
        feed(iterable: Iterable[T]): Future[Ack]
      
      
      
Feeds the source Subscriber with elements from the given collection, respecting the contract and returning a
Future[Ack]with the last acknowledgement given after the last emitted element.Feeds the source Subscriber with elements from the given collection, respecting the contract and returning a
Future[Ack]with the last acknowledgement given after the last emitted element.- iterable
 is the collection of items to push downstream
 - 
      
      
      
        
      
    
      
        
        def
      
      
        getClass(): Class[_ <: AnyVal]
      
      
      
- Definition Classes
 - AnyVal → Any
 
 - 
      
      
      
        
      
    
      
        final 
        def
      
      
        isInstanceOf[T0]: Boolean
      
      
      
- Definition Classes
 - Any
 
 - 
      
      
      
        
      
    
      
        
        def
      
      
        onNextAll(xs: TraversableOnce[T]): Future[Ack]
      
      
      
Feeds the source Subscriber with elements from the given collection, respecting the contract and returning a
Future[Ack]with the last acknowledgement given after the last emitted element.Feeds the source Subscriber with elements from the given collection, respecting the contract and returning a
Future[Ack]with the last acknowledgement given after the last emitted element.- xs
 the traversable object containing the elements to feed into our subscriber
 -  val target: Subscriber[T]
 - 
      
      
      
        
      
    
      
        
        def
      
      
        toReactive(bufferSize: Int): org.reactivestreams.Subscriber[T]
      
      
      
Transforms the source Subscriber into a
org.reactivestreams.Subscriberinstance as defined by the Reactive Streams specification.Transforms the source Subscriber into a
org.reactivestreams.Subscriberinstance as defined by the Reactive Streams specification.- bufferSize
 a strictly positive number, representing the size of the buffer used and the number of elements requested on each cycle when communicating demand, compliant with the reactive streams specification
 - 
      
      
      
        
      
    
      
        
        def
      
      
        toReactive: org.reactivestreams.Subscriber[T]
      
      
      
Transforms the source Subscriber into a
org.reactivestreams.Subscriberinstance as defined by the Reactive Streams specification. - 
      
      
      
        
      
    
      
        
        def
      
      
        toString(): String
      
      
      
- Definition Classes
 - Any
 
 

This is the API documentation for the Monix library.
Package Overview
monix.execution exposes lower level primitives for dealing with asynchronous execution:
Atomictypes, as alternative tojava.util.concurrent.atomicmonix.eval is for dealing with evaluation of results, thus exposing Task and Coeval.
monix.reactive exposes the
Observablepattern:Observableimplementationsmonix.types implements type-class shims, to be translated to type-classes provided by libraries such as Cats or Scalaz.
monix.cats is the optional integration with the Cats library, providing translations for the types described in
monix.types.monix.scalaz is the optional integration with the Scalaz library, providing translations for the types described in
monix.types.