Package org.ldk.structs
Interface Listen.ListenInterface
-
- Enclosing class:
- Listen
public static interface Listen.ListenInterface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
block_connected(byte[] block, int height)
Notifies the listener that a block was added at the given height.void
block_disconnected(byte[] header, int height)
Notifies the listener that a block was removed at the given height.void
filtered_block_connected(byte[] header, TwoTuple_usizeTransactionZ[] txdata, int height)
Notifies the listener that a block was added at the given height, with the transaction data possibly filtered.
-
-
-
Method Detail
-
filtered_block_connected
void filtered_block_connected(byte[] header, TwoTuple_usizeTransactionZ[] txdata, int height)
Notifies the listener that a block was added at the given height, with the transaction data possibly filtered.
-
block_connected
void block_connected(byte[] block, int height)
Notifies the listener that a block was added at the given height.
-
block_disconnected
void block_disconnected(byte[] header, int height)
Notifies the listener that a block was removed at the given height.
-
-