package rstreams
- Alphabetic
 
- Public
 - All
 
Type Members
- 
      
      
      
        
      
    
      
        final 
        class
      
      
        
              SingleAssignmentSubscription
             extends Subscription
      
      
      
Represents a
org.reactivestreams.Subscriptionthat can be assigned only once to another subscription reference.Represents a
org.reactivestreams.Subscriptionthat can be assigned only once to another subscription reference.If the assignment happens after this subscription has been canceled, then on assignment the reference will get canceled too. If the assignment after
request(n)has been called on this subscription, thenrequest(n)will get called immediately on the assigned reference as well.Useful in case you need a thread-safe forward reference.
 - 
      
      
      
        
      
    
      
        
        trait
      
      
        
              Subscription
             extends org.reactivestreams.Subscription with Cancelable
      
      
      
The
Subscriptionrepresents a cross between the Monix Cancelable andorg.reactivestreams.Subcription.The
Subscriptionrepresents a cross between the Monix Cancelable andorg.reactivestreams.Subcription.Represents a one-to-one lifecycle of a
Subscribersubscribing to aPublisherand mirrors theSubscriptioninterface from the Reactive Streams specification.It can be used only once by a single
Subscriber. It is used for both signaling demand for data and for canceling demand (and allow resource cleanup). 
Value Members
-  object SingleAssignmentSubscription extends Serializable
 -  object Subscription extends Serializable
 

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.