public class NativePeerEventListener extends Object implements PeerEventListener
Modifier and Type | Field and Description |
---|---|
long |
ptr |
Constructor and Description |
---|
NativePeerEventListener() |
Modifier and Type | Method and Description |
---|---|
List<Message> |
getData(Peer peer,
GetDataMessage m)
Called when a peer receives a getdata message, usually in response to an "inv" being broadcast.
|
void |
onBlocksDownloaded(Peer peer,
Block block,
int blocksLeft)
Called on a Peer thread when a block is received.
|
void |
onChainDownloadStarted(Peer peer,
int blocksLeft)
Called when a download is started with the initial number of blocks to be downloaded.
|
void |
onPeerConnected(Peer peer,
int peerCount)
Called when a peer is connected.
|
void |
onPeerDisconnected(Peer peer,
int peerCount)
Called when a peer is disconnected.
|
Message |
onPreMessageReceived(Peer peer,
Message m)
Called when a message is received by a peer, before the message is processed.
|
void |
onTransaction(Peer peer,
Transaction t)
Called when a new transaction is broadcast over the network.
|
public void onBlocksDownloaded(Peer peer, Block block, int blocksLeft)
PeerEventListener
The block may have transactions or may be a header only once getheaders is implemented.
onBlocksDownloaded
in interface PeerEventListener
peer
- the peer receiving the blockblock
- the downloaded blockblocksLeft
- the number of blocks left to downloadpublic void onChainDownloadStarted(Peer peer, int blocksLeft)
PeerEventListener
onChainDownloadStarted
in interface PeerEventListener
peer
- the peer receiving the blockblocksLeft
- the number of blocks left to downloadpublic void onPeerConnected(Peer peer, int peerCount)
PeerEventListener
Peer
instead of a PeerGroup
,
peerCount will always be 1.onPeerConnected
in interface PeerEventListener
peerCount
- the total number of connected peerspublic void onPeerDisconnected(Peer peer, int peerCount)
PeerEventListener
PeerGroup
and the group is in the process of shutting down. If this listener is registered to a
Peer
instead of a PeerGroup
, peerCount will always be 0.onPeerDisconnected
in interface PeerEventListener
peerCount
- the total number of connected peerspublic Message onPreMessageReceived(Peer peer, Message m)
PeerEventListener
Called when a message is received by a peer, before the message is processed. The returned message is processed instead. Returning null will cause the message to be ignored by the Peer returning the same message object allows you to see the messages received but not change them. The result from one event listeners callback is passed as "m" to the next, forming a chain.
Note that this will never be called if registered with any executor other than
Threading.SAME_THREAD
onPreMessageReceived
in interface PeerEventListener
public void onTransaction(Peer peer, Transaction t)
PeerEventListener
onTransaction
in interface PeerEventListener
public List<Message> getData(Peer peer, GetDataMessage m)
PeerEventListener
Called when a peer receives a getdata message, usually in response to an "inv" being broadcast. Return as many
items as possible which appear in the GetDataMessage
, or null if you're not interested in responding.
Note that this will never be called if registered with any executor other than
Threading.SAME_THREAD
getData
in interface PeerEventListener
Copyright © 2014. All rights reserved.