object BifrostQueryAlgebra extends BifrostQueryInterpreter

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BifrostQueryAlgebra
  2. BifrostQueryInterpreter
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. sealed trait BifrostQueryADT[A] extends AnyRef
  2. type BifrostQueryADTMonad[A] = Free[BifrostQueryADT, A]
  3. case class BlockByDepth(depth: Long) extends BifrostQueryADT[Option[BlockId]] with Product with Serializable
  4. case class BlockByHeight(height: Long) extends BifrostQueryADT[Option[BlockId]] with Product with Serializable
  5. case class BroadcastTransaction(tx: IoTransaction) extends BifrostQueryADT[TransactionId] with Product with Serializable
  6. case class FetchBlockBody(blockId: BlockId) extends BifrostQueryADT[Option[BlockBody]] with Product with Serializable
  7. case class FetchBlockHeader(blockId: BlockId) extends BifrostQueryADT[Option[BlockHeader]] with Product with Serializable
  8. case class FetchTransaction(txId: TransactionId) extends BifrostQueryADT[Option[IoTransaction]] with Product with Serializable
  9. case class MakeBlock(nbOfBlocks: Int) extends BifrostQueryADT[Unit] with Product with Serializable
  10. case class SynchronizationTraversal() extends BifrostQueryADT[Iterator[SynchronizationTraversalRes]] with Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def blockByDepthF(depth: Long): BifrostQueryADTMonad[Option[BlockId]]
  6. def blockByHeightF(height: Long): BifrostQueryADTMonad[Option[BlockId]]
  7. def broadcastTransactionF(tx: IoTransaction): BifrostQueryADTMonad[TransactionId]
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def fetchBlockBodyF(blockId: BlockId): BifrostQueryADTMonad[Option[BlockBody]]
  12. def fetchBlockHeaderF(blockId: BlockId): BifrostQueryADTMonad[Option[BlockHeader]]
  13. def fetchTransactionF(txId: TransactionId): BifrostQueryADTMonad[Option[IoTransaction]]
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  16. def interpretADT[A, F[_]](channelResource: Resource[F, ManagedChannel], computation: BifrostQueryADTMonad[A])(implicit arg0: Sync[F]): F[A]
    Definition Classes
    BifrostQueryInterpreter
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def make[F[_]](channelResource: Resource[F, ManagedChannel])(implicit arg0: Sync[F]): BifrostQueryAlgebra[F]
  19. def makeBlockF(nbOfBlocks: Int): BifrostQueryADTMonad[Unit]
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  23. def synchronizationTraversalF[F[_]](): BifrostQueryADTMonad[Iterator[SynchronizationTraversalRes]]
  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped