Package org.ldk.structs
Class ChannelMonitorUpdate
- java.lang.Object
-
- org.ldk.structs.ChannelMonitorUpdate
-
public class ChannelMonitorUpdate extends Object
An update generated by the underlying Channel itself which contains some new information the ChannelMonitor should be made aware of.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ChannelMonitorUpdate
clone()
Creates a copy of the ChannelMonitorUpdateprotected void
finalize()
long
get_update_id()
The sequence number of this update.static Result_ChannelMonitorUpdateDecodeErrorZ
read(byte[] ser)
Read a ChannelMonitorUpdate from a byte array, created by ChannelMonitorUpdate_writevoid
set_update_id(long val)
The sequence number of this update.byte[]
write()
Serialize the ChannelMonitorUpdate object into a byte array which can be read by ChannelMonitorUpdate_read
-
-
-
Method Detail
-
finalize
protected void finalize() throws Throwable
-
get_update_id
public long get_update_id()
The sequence number of this update. Updates *must* be replayed in-order according to this sequence number (and updates may panic if they are not). The update_id values are strictly increasing and increase by one for each new update, with one exception specified below. This sequence number is also used to track up to which points updates which returned ChannelMonitorUpdateErr::TemporaryFailure have been applied to all copies of a given ChannelMonitor when ChannelManager::channel_monitor_updated is called. The only instance where update_id values are not strictly increasing is the case where we allow post-force-close updates with a special update ID of [`CLOSED_CHANNEL_UPDATE_ID`]. See its docs for more details.
-
set_update_id
public void set_update_id(long val)
The sequence number of this update. Updates *must* be replayed in-order according to this sequence number (and updates may panic if they are not). The update_id values are strictly increasing and increase by one for each new update, with one exception specified below. This sequence number is also used to track up to which points updates which returned ChannelMonitorUpdateErr::TemporaryFailure have been applied to all copies of a given ChannelMonitor when ChannelManager::channel_monitor_updated is called. The only instance where update_id values are not strictly increasing is the case where we allow post-force-close updates with a special update ID of [`CLOSED_CHANNEL_UPDATE_ID`]. See its docs for more details.
-
clone
public ChannelMonitorUpdate clone()
Creates a copy of the ChannelMonitorUpdate
-
write
public byte[] write()
Serialize the ChannelMonitorUpdate object into a byte array which can be read by ChannelMonitorUpdate_read
-
read
public static Result_ChannelMonitorUpdateDecodeErrorZ read(byte[] ser)
Read a ChannelMonitorUpdate from a byte array, created by ChannelMonitorUpdate_write
-
-