class Macros extends InlineMacros with HygieneUtilMacros
Various implementations for AckExtensions and Scheduler.
- Annotations
- @bundle()
- Source
- Macros.scala
- Alphabetic
- By Inheritance
- Macros
- HygieneUtilMacros
- InlineMacros
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
val
c: Context
- Definition Classes
- Macros → HygieneUtilMacros → InlineMacros
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def executeAsync(cb: scala.reflect.macros.Universe.Tree): scala.reflect.macros.Universe.Tree
- def executeAsyncBatch(cb: scala.reflect.macros.Universe.Tree): scala.reflect.macros.Universe.Tree
- def executeTrampolined(cb: scala.reflect.macros.Universe.Tree): scala.reflect.macros.Universe.Tree
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
inlineAndReset[A](tree: scala.reflect.macros.Universe.Tree): scala.reflect.macros.whitebox.Context.Expr[A]
- Definition Classes
- InlineMacros
-
def
inlineAndResetTree(tree: scala.reflect.macros.Universe.Tree): scala.reflect.macros.Universe.Tree
- Definition Classes
- InlineMacros
-
def
inlineApplyRecursive(tree: scala.reflect.macros.Universe.Tree): scala.reflect.macros.Universe.Tree
- Definition Classes
- InlineMacros
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isSynchronous[Self <: Future[Ack]](implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[Self]): scala.reflect.macros.whitebox.Context.Expr[Boolean]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
resetTree(tree: scala.reflect.macros.Universe.Tree): scala.reflect.macros.Universe.Tree
- Definition Classes
- InlineMacros
-
def
stripUnApplyNodes(): scala.reflect.macros.Universe.Transformer
Creates a macro transformer than gets rid of implicit unapply in case statements.
Creates a macro transformer than gets rid of implicit unapply in case statements.
Workaround for: https://issues.scala-lang.org/browse/SI-5465
- Definition Classes
- InlineMacros
- def syncFlatMap[Self <: Future[Ack]](f: scala.reflect.macros.whitebox.Context.Expr[(Ack) ⇒ Future[Ack]])(s: scala.reflect.macros.whitebox.Context.Expr[Scheduler])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[Self]): scala.reflect.macros.whitebox.Context.Expr[Future[Ack]]
- def syncMap[Self <: Future[Ack]](f: scala.reflect.macros.whitebox.Context.Expr[(Ack) ⇒ Ack])(s: scala.reflect.macros.whitebox.Context.Expr[Scheduler])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[Self]): scala.reflect.macros.whitebox.Context.Expr[Future[Ack]]
- def syncOnComplete[Self <: Future[Ack]](f: scala.reflect.macros.whitebox.Context.Expr[(Try[Ack]) ⇒ Unit])(s: scala.reflect.macros.whitebox.Context.Expr[Scheduler])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[Self]): scala.reflect.macros.whitebox.Context.Expr[Unit]
- def syncOnContinue[Self <: Future[Ack]](callback: scala.reflect.macros.Universe.Tree)(s: scala.reflect.macros.Universe.Tree)(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[Self]): scala.reflect.macros.Universe.Tree
- def syncOnStopOrFailure[Self <: Future[Ack]](callback: scala.reflect.macros.Universe.Tree)(s: scala.reflect.macros.Universe.Tree)(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[Self]): scala.reflect.macros.Universe.Tree
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
object
util
- Definition Classes
- HygieneUtilMacros
This is the API documentation for the Monix library.
Package Overview
monix.execution exposes lower level primitives for dealing with asynchronous execution:
Atomic
types, as alternative tojava.util.concurrent.atomic
monix.eval is for dealing with evaluation of results, thus exposing Task and Coeval.
monix.reactive exposes the
Observable
pattern:Observable
implementationsmonix.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
.