implicit class AnimateObservableOps[Alg[x[_]] <: Algebra[x[_]], F[_], A] extends AnyRef
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- AnimateObservableOps
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
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( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[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()
-
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()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
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
- @throws( ... ) @native()
-
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.