Uses of Class
com.google.bitcoin.core.PeerAddress

Packages that use PeerAddress
com.google.bitcoin.core   
com.google.bitcoin.kits   
 

Uses of PeerAddress in com.google.bitcoin.core
 

Fields in com.google.bitcoin.core declared as PeerAddress
 PeerAddress VersionMessage.myAddr
          What the other side believes the address of this program is.
protected  PeerAddress PeerSocketHandler.peerAddress
           
 PeerAddress VersionMessage.theirAddr
          What the other side believes their own address is.
 

Methods in com.google.bitcoin.core that return PeerAddress
 PeerAddress PeerSocketHandler.getAddress()
           
static PeerAddress PeerAddress.localhost(NetworkParameters params)
           
 

Methods in com.google.bitcoin.core that return types with arguments of type PeerAddress
 List<PeerAddress> AddressMessage.getAddresses()
           
 ListIterator<PeerAddress> TransactionConfidence.getBroadcastBy()
          Returns a snapshot of PeerAddresses that announced the transaction.
 

Methods in com.google.bitcoin.core with parameters of type PeerAddress
 void PeerGroup.addAddress(PeerAddress peerAddress)
          Add an address to the list of potential peers to connect to.
 void AddressMessage.addAddress(PeerAddress address)
           
protected  Peer PeerGroup.connectTo(PeerAddress address, boolean incrementMaxConnections)
           
 boolean TransactionConfidence.markBroadcastBy(PeerAddress address)
          Called by a Peer when a transaction is pending and announced by a peer.
 void MemoryPool.seen(Sha256Hash hash, PeerAddress byPeer)
          Called by peers when they see a transaction advertised in an "inv" message.
 Transaction MemoryPool.seen(Transaction tx, PeerAddress byPeer)
          Called by peers when they receive a "tx" message containing a valid serialized transaction.
 boolean TransactionConfidence.wasBroadcastBy(PeerAddress address)
          Returns true if the given address has been seen via markBroadcastBy()
 

Constructors in com.google.bitcoin.core with parameters of type PeerAddress
Peer(NetworkParameters params, AbstractBlockChain blockChain, PeerAddress peerAddress, String thisSoftwareName, String thisSoftwareVersion)
          Construct a peer that reads/writes from the given chain.
Peer(NetworkParameters params, VersionMessage ver, AbstractBlockChain chain, PeerAddress remoteAddress)
          Construct a peer that reads/writes from the given block chain.
Peer(NetworkParameters params, VersionMessage ver, PeerAddress remoteAddress, AbstractBlockChain chain, MemoryPool mempool)
          Construct a peer that reads/writes from the given block chain and memory pool.
PeerSocketHandler(NetworkParameters params, PeerAddress peerAddress)
           
 

Uses of PeerAddress in com.google.bitcoin.kits
 

Fields in com.google.bitcoin.kits declared as PeerAddress
protected  PeerAddress[] WalletAppKit.peerAddresses
           
 

Methods in com.google.bitcoin.kits with parameters of type PeerAddress
 WalletAppKit WalletAppKit.setPeerNodes(PeerAddress... addresses)
          Will only connect to the given addresses.
 



Copyright © 2014. All rights reserved.