implicit class AnimateObservableOps[Alg[x[_]] <: Algebra[x[_]], F[_], A] extends AnyRef
- Alphabetic
- By Inheritance
- AnimateObservableOps
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new AnimateObservableOps(frames: Observable[Picture[Alg, F, A]])
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
- def animate[Frame, Canvas](frame: Frame, cb: (Either[Throwable, A]) => Unit = theNullCallback)(implicit a: AnimationRenderer[Canvas], e: Renderer[Alg, F, Frame, Canvas], s: Scheduler, m: Monoid[A]): Unit
Render an
Observablethat is generating frames an appropriate rate for animation. - def animateToIO[Frame, Canvas](frame: Frame)(implicit a: AnimationRenderer[Canvas], e: Renderer[Alg, F, Frame, Canvas], s: Scheduler, m: Monoid[A]): IO[A]
Create an effect that, when run, will render an
Observablethat is generating frames an appropriate rate for animation. - def animateWithCanvas[Canvas](canvas: Canvas, cb: (Either[Throwable, A]) => Unit = theNullCallback)(implicit a: AnimationRenderer[Canvas], e: Renderer[Alg, F, _, Canvas], s: Scheduler, m: Monoid[A]): Unit
Render an
Observablethat is generating frames an appropriate rate for animation. - def animateWithCanvasToIO[Canvas](canvas: Canvas)(implicit a: AnimationRenderer[Canvas], e: Renderer[Alg, F, _, Canvas], s: Scheduler, m: Monoid[A]): IO[A]
Create an effect that, when run, will render an
Observablethat is generating frames an appropriate rate for animation. - final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def withFrameRate(period: FiniteDuration): Observable[Picture[Alg, F, A]]
Makes this Observable produce frames with the given period between frames.
Makes this Observable produce frames with the given period between frames. This is useful if the Observable is producing frames too quickly or slowly for the desired animation.
A convenience derived from the throttle method on Observable.
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
- Deprecated
(Since version ) see corresponding Javadoc for more information.