trait WalletCallbacks extends ModuleCallbacks[WalletCallbacks] with BitcoinSLogger

Callbacks for responding to events in the wallet. The appropriate callback is executed whenever the wallet finishes, the corresponding function.

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WalletCallbacks
  2. BitcoinSLogger
  3. ModuleCallbacks
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def +(other: WalletCallbacks): WalletCallbacks
    Definition Classes
    WalletCallbacksModuleCallbacks
  2. abstract def onBlockProcessed: CallbackHandler[Block, OnBlockProcessed]
  3. abstract def onFeeRateChanged: CallbackHandler[FeeUnit, OnFeeRateChanged]
  4. abstract def onNewAddressGenerated: CallbackHandler[BitcoinAddress, OnNewAddressGenerated]
  5. abstract def onRescanComplete: CallbackHandler[String, OnRescanComplete]
  6. abstract def onReservedUtxos: CallbackHandler[Vector[SpendingInfoDb], OnReservedUtxos]
  7. abstract def onTransactionBroadcast: CallbackHandler[Transaction, OnTransactionBroadcast]
  8. abstract def onTransactionProcessed: CallbackHandler[Transaction, OnTransactionProcessed]

Concrete 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 clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def executeOnBlockProcessed(block: Block)(implicit ec: ExecutionContext): Future[Unit]
  9. def executeOnFeeRateChanged(feeRate: FeeUnit)(implicit ec: ExecutionContext): Future[Unit]
  10. def executeOnNewAddressGenerated(address: BitcoinAddress)(implicit ec: ExecutionContext): Future[Unit]
  11. def executeOnRescanComplete(walletName: String)(implicit ec: ExecutionContext): Future[Unit]
  12. def executeOnReservedUtxos(utxos: Vector[SpendingInfoDb])(implicit ec: ExecutionContext): Future[Unit]
  13. def executeOnTransactionBroadcast(tx: Transaction)(implicit ec: ExecutionContext): Future[Unit]
  14. def executeOnTransactionProcessed(tx: Transaction)(implicit ec: ExecutionContext): Future[Unit]
  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def logger: Logger
    Definition Classes
    BitcoinSLogger
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  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()

Inherited from BitcoinSLogger

Inherited from AnyRef

Inherited from Any

Ungrouped