Packages

t

org.bitcoins.node

NodeRunningState

sealed trait NodeRunningState extends NodeState

Means our node has been started and is running

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

Abstract Value Members

  1. abstract def isSyncing: Boolean
  2. abstract def peerFinder: PeerFinder
  3. abstract def peerWithServicesDataMap: Map[PeerWithServices, PersistentPeerData]
  4. abstract def waitingForDisconnection: Set[Peer]

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. def addPeer(peer: Peer): NodeRunningState
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. def connectedPeerCount: Int
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def getPeerConnection(peer: Peer): Option[PeerConnection]
  13. def getPeerData(peer: Peer): Option[PersistentPeerData]
  14. def getPeerMsgSender(peer: Peer): Option[PeerMessageSender]
  15. def getPeerServices(peer: Peer): Option[ServiceIdentifier]
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def isConnected(peer: Peer): Boolean
  18. def isDisconnected(peer: Peer): Boolean
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  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. def peerDataMap: Map[Peer, PersistentPeerData]
  24. def peers: Set[Peer]

    All peers the node is currently connected to

  25. def peersWithServices: Set[PeerWithServices]
  26. def randomPeer(excludePeers: Set[Peer], services: ServiceIdentifier): Option[Peer]
  27. def randomPeerMessageSender(excludePeers: Set[Peer], services: ServiceIdentifier): Option[PeerMessageSender]
  28. def removePeer(peer: Peer): NodeRunningState

    Removes the peer from our peerDataMap

  29. def replacePeers(peerWithServicesDataMap: Map[PeerWithServices, PersistentPeerData]): NodeRunningState
  30. def replaceWaitingForDisconnection(newWaitingForDisconnection: Set[Peer]): NodeRunningState
  31. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  32. def toDoneSyncing: DoneSyncing
  33. def toString(): String
    Definition Classes
    NodeRunningState → AnyRef → Any
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from NodeState

Inherited from AnyRef

Inherited from Any

Ungrouped