c

org.bitcoins.wallet.models

TransactionDAO

case class TransactionDAO()(implicit ec: ExecutionContext, appConfig: WalletAppConfig) extends CRUD[TransactionDb, DoubleSha256DigestBE] with TxDAO[TransactionDb] with Product with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TransactionDAO
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. TxDAO
  7. SlickUtil
  8. TxCRUDComponent
  9. CRUD
  10. JdbcProfileComponent
  11. Logging
  12. AnyRef
  13. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TransactionDAO()(implicit ec: ExecutionContext, appConfig: WalletAppConfig)

Type Members

  1. type DbTable = TxTable[TransactionDb]
    Definition Classes
    TxDAO
  2. class TransactionTable extends TxTable[TransactionDb]
  3. abstract class TxTable[DbEntryType <: TxDB] extends slick.jdbc.JdbcProfile.API.Table[DbEntryType]
    Definition Classes
    TxCRUDComponent

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. implicit val appConfig: WalletAppConfig
    Definition Classes
    TransactionDAO → CRUD → JdbcProfileComponent
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  7. def count(): Future[Int]
    Definition Classes
    CRUD
  8. def create(t: TransactionDb): Future[TransactionDb]
    Definition Classes
    CRUD
  9. def createAll(ts: Vector[TransactionDb]): Future[Vector[TransactionDb]]
    Definition Classes
    TxDAO → CRUD
  10. def createAllNoAutoInc(ts: Vector[TransactionDb], database: SafeDatabase)(implicit ec: ExecutionContext): Future[Vector[TransactionDb]]
    Definition Classes
    SlickUtil
  11. lazy val database: slick.jdbc.JdbcProfile.API.Database
    Definition Classes
    JdbcProfileComponent
  12. lazy val dbConfig: DatabaseConfig[JdbcProfile]
    Definition Classes
    JdbcProfileComponent
  13. def debug(mkr: Marker, msg: ⇒ Any, t: ⇒ Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  14. def debug(msg: ⇒ Any, t: ⇒ Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  15. def debug(msg: ⇒ Any): Unit
    Attributes
    protected
    Definition Classes
    Logging
  16. def delete(t: TransactionDb): Future[Int]
    Definition Classes
    CRUD
  17. def deleteAll(): Future[Int]
    Definition Classes
    CRUD
  18. def deleteAll(ts: Vector[TransactionDb]): Future[Int]
    Definition Classes
    CRUD
  19. implicit val ec: ExecutionContext
    Definition Classes
    TransactionDAOTxDAO
  20. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. def error(mkr: Marker, msg: ⇒ Any, t: ⇒ Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  22. def error(msg: ⇒ Any, t: ⇒ Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  23. def error(msg: ⇒ Any): Unit
    Attributes
    protected
    Definition Classes
    Logging
  24. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  25. def find(t: TransactionDb): slick.jdbc.JdbcProfile.API.Query[slick.jdbc.JdbcProfile.API.Table[_], TransactionDb, Seq]
    Attributes
    protected
    Definition Classes
    CRUD
  26. def findAll(txs: Vector[TransactionDb]): slick.jdbc.JdbcProfile.API.Query[DbTable, TransactionDb, Seq]
    Definition Classes
    TxDAO → CRUD
  27. def findAll(): Future[Vector[TransactionDb]]
    Definition Classes
    CRUD
  28. def findAllConfirmed(): Future[Vector[TransactionDb]]
  29. def findAllUnconfirmed(): Future[Vector[TransactionDb]]
  30. def findByOutPoint(outPoint: TransactionOutPoint): Future[Option[TransactionDb]]
    Definition Classes
    TxDAO
  31. def findByPrimaryKey(txIdBE: DoubleSha256DigestBE): slick.jdbc.JdbcProfile.API.Query[DbTable, TransactionDb, Seq]
    Definition Classes
    TxDAO → CRUD
  32. def findByPrimaryKeys(txIdBEs: Vector[DoubleSha256DigestBE]): slick.jdbc.JdbcProfile.API.Query[DbTable, TransactionDb, Seq]
    Definition Classes
    TxDAO → CRUD
  33. def findByTxId(txId: DoubleSha256Digest): Future[Option[TransactionDb]]
    Definition Classes
    TxDAO
  34. def findByTxId(txIdBE: DoubleSha256DigestBE): Future[Option[TransactionDb]]
    Definition Classes
    TxDAO
  35. def findByTxIdBEs(txIdBEs: Vector[DoubleSha256DigestBE]): Future[Vector[TransactionDb]]
    Definition Classes
    TxDAO
  36. def findByTxIds(txIdBEs: Vector[DoubleSha256DigestBE]): Future[Vector[TransactionDb]]
    Definition Classes
    TxDAO
  37. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  38. def info(mkr: Marker, msg: ⇒ Any, t: ⇒ Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  39. def info(msg: ⇒ Any, t: ⇒ Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  40. def info(msg: ⇒ Any): Unit
    Attributes
    protected
    Definition Classes
    Logging
  41. def isDebugEnabled: Boolean
    Attributes
    protected
    Definition Classes
    Logging
  42. def isErrorEnabled: Boolean
    Attributes
    protected
    Definition Classes
    Logging
  43. def isInfoEnabled: Boolean
    Attributes
    protected
    Definition Classes
    Logging
  44. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  45. def isTraceEnabled: Boolean
    Attributes
    protected
    Definition Classes
    Logging
  46. def isWarnEnabled: Boolean
    Attributes
    protected
    Definition Classes
    Logging
  47. def logger: Logger
    Attributes
    protected
    Definition Classes
    Logging
  48. def loggerName: String
    Attributes
    protected
    Definition Classes
    Logging
  49. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  50. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  51. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  52. lazy val numThreads: Int
    Definition Classes
    JdbcProfileComponent
  53. lazy val password: String
    Definition Classes
    JdbcProfileComponent
  54. lazy val profile: JdbcProfile
    Definition Classes
    JdbcProfileComponent
  55. def read(id: DoubleSha256DigestBE): Future[Option[TransactionDb]]
    Definition Classes
    CRUD
  56. def safeDatabase: SafeDatabase
    Definition Classes
    CRUD
  57. val schemaName: Option[String]
    Definition Classes
    CRUD
  58. def startHikariLogger(interval: Duration): HikariLogging
    Attributes
    protected
    Definition Classes
    JdbcProfileComponent
  59. def stopHikariLogger(): Unit
    Attributes
    protected
    Definition Classes
    JdbcProfileComponent
  60. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  61. val table: TableQuery[TransactionTable]
    Definition Classes
    TransactionDAOTxDAO → CRUD
  62. implicit def tableQuerySafeSubtypeCast[SpecificT <: AbstractTable[_], SomeT <: SpecificT](tableQuery: slick.jdbc.JdbcProfile.API.TableQuery[SomeT]): slick.jdbc.JdbcProfile.API.TableQuery[SpecificT]
    Attributes
    protected
    Definition Classes
    CRUD
  63. def trace(mkr: Marker, msg: ⇒ Any, t: ⇒ Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  64. def trace(msg: ⇒ Any, t: ⇒ Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  65. def trace(msg: ⇒ Any): Unit
    Attributes
    protected
    Definition Classes
    Logging
  66. def update(t: TransactionDb): Future[TransactionDb]
    Definition Classes
    CRUD
  67. def updateAll(ts: Vector[TransactionDb]): Future[Vector[TransactionDb]]
    Definition Classes
    CRUD
  68. def upsert(t: TransactionDb): Future[TransactionDb]
    Definition Classes
    CRUD
  69. def upsertAll(ts: Vector[TransactionDb]): Future[Vector[TransactionDb]]
    Definition Classes
    CRUD
  70. lazy val username: String
    Definition Classes
    JdbcProfileComponent
  71. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  72. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  73. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  74. def warn(mkr: Marker, msg: ⇒ Any, t: ⇒ Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  75. def warn(msg: ⇒ Any, t: ⇒ Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  76. def warn(msg: ⇒ Any): Unit
    Attributes
    protected
    Definition Classes
    Logging

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from TxDAO[TransactionDb]

Inherited from TxCRUDComponent[TransactionDb]

Inherited from Logging

Inherited from AnyRef

Inherited from Any

Ungrouped