object FetchTutorialHelper
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- FetchTutorialHelper
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- case class ForgetfulCache[F[_]]()(implicit evidence$11: Monad[F]) extends DataCache[F] with Product with Serializable
- case class Post(id: PostId, author: UserId, content: String) extends Product with Serializable
- type PostId = Int
- type PostTopic = String
- case class User(id: UserId, username: String) extends Product with Serializable
- type UserId = Int
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
- def cache[F[_]](implicit arg0: Concurrent[F]): InMemoryCache[F]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- implicit val cs: ContextShift[IO]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- val executionContext: ExecutionContext
- val executor: ScheduledThreadPoolExecutor
- def failingFetch[F[_]](implicit arg0: Concurrent[F], arg1: Monad[F]): Fetch[F, String]
- def fetchException[F[_]](implicit arg0: Concurrent[F]): Fetch[F, User]
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def forgetfulCache[F[_]](implicit arg0: Concurrent[F]): ForgetfulCache[F]
- def getBatchedUser[F[_]](id: Int)(implicit arg0: Concurrent[F]): Fetch[F, User]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def getPost[F[_]](id: PostId)(implicit arg0: Concurrent[F]): Fetch[F, Post]
- def getPostTopic[F[_]](post: Post)(implicit arg0: Concurrent[F]): Fetch[F, PostTopic]
- def getSequentialUser[F[_]](id: Int)(implicit arg0: Concurrent[F]): Fetch[F, User]
- def getUser[F[_]](id: UserId)(implicit arg0: Concurrent[F], arg1: Monad[F]): Fetch[F, User]
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def latency[F[_]](msg: String)(implicit arg0: Concurrent[F]): F[Unit]
- 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()
- val postDatabase: Map[PostId, Post]
- val result: IO[Either[Throwable, (Log, String)]]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- implicit val timer: Timer[IO]
- def toString(): String
- Definition Classes
- AnyRef → Any
- val userDatabase: Map[UserId, User]
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- 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()
- object BatchedUsers extends Data[UserId, User]
- object PostTopics extends Data[Post, PostTopic]
- object Posts extends Data[PostId, Post]
- object SequentialUsers extends Data[UserId, User]
- object Users extends Data[UserId, User]