[Java] Update auto-generated Java bindings for 0.0.116
[ldk-java] / src / main / java / org / ldk / structs / FeeEstimator.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5 import org.ldk.util.*;
6 import java.util.Arrays;
7 import java.lang.ref.Reference;
8 import javax.annotation.Nullable;
9
10 /**
11  * A trait which should be implemented to provide feerate information on a number of time
12  * horizons.
13  * 
14  * If access to a local mempool is not feasible, feerate estimates should be fetched from a set of
15  * third-parties hosting them. Note that this enables them to affect the propagation of your
16  * pre-signed transactions at any time and therefore endangers the safety of channels funds. It
17  * should be considered carefully as a deployment.
18  * 
19  * Note that all of the functions implemented here *must* be reentrant-safe (obviously - they're
20  * called from inside the library in response to chain events, P2P events, or timer events).
21  */
22 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
23 public class FeeEstimator extends CommonBase {
24         final bindings.LDKFeeEstimator bindings_instance;
25         FeeEstimator(Object _dummy, long ptr) { super(ptr); bindings_instance = null; }
26         private FeeEstimator(bindings.LDKFeeEstimator arg) {
27                 super(bindings.LDKFeeEstimator_new(arg));
28                 this.ptrs_to.add(arg);
29                 this.bindings_instance = arg;
30         }
31         @Override @SuppressWarnings("deprecation")
32         protected void finalize() throws Throwable {
33                 if (ptr != 0) { bindings.FeeEstimator_free(ptr); } super.finalize();
34         }
35         /**
36          * Destroys the object, freeing associated resources. After this call, any access
37          * to this object may result in a SEGFAULT or worse.
38          *
39          * You should generally NEVER call this method. You should let the garbage collector
40          * do this for you when it finalizes objects. However, it may be useful for types
41          * which represent locks and should be closed immediately to avoid holding locks
42          * until the GC runs.
43          */
44         public void destroy() {
45                 if (ptr != 0) { bindings.FeeEstimator_free(ptr); }
46                 ptr = 0;
47         }
48         public static interface FeeEstimatorInterface {
49                 /**
50                  * Gets estimated satoshis of fee required per 1000 Weight-Units.
51                  * 
52                  * LDK will wrap this method and ensure that the value returned is no smaller than 253
53                  * (ie 1 satoshi-per-byte rounded up to ensure later round-downs don't put us below 1 satoshi-per-byte).
54                  * 
55                  * The following unit conversions can be used to convert to sats/KW:
56                  * satoshis-per-byte * 250
57                  * satoshis-per-kbyte / 4
58                  */
59                 int get_est_sat_per_1000_weight(ConfirmationTarget confirmation_target);
60         }
61         private static class LDKFeeEstimatorHolder { FeeEstimator held; }
62         public static FeeEstimator new_impl(FeeEstimatorInterface arg) {
63                 final LDKFeeEstimatorHolder impl_holder = new LDKFeeEstimatorHolder();
64                 impl_holder.held = new FeeEstimator(new bindings.LDKFeeEstimator() {
65                         @Override public int get_est_sat_per_1000_weight(ConfirmationTarget confirmation_target) {
66                                 int ret = arg.get_est_sat_per_1000_weight(confirmation_target);
67                                 Reference.reachabilityFence(arg);
68                                 return ret;
69                         }
70                 });
71                 return impl_holder.held;
72         }
73         /**
74          * Gets estimated satoshis of fee required per 1000 Weight-Units.
75          * 
76          * LDK will wrap this method and ensure that the value returned is no smaller than 253
77          * (ie 1 satoshi-per-byte rounded up to ensure later round-downs don't put us below 1 satoshi-per-byte).
78          * 
79          * The following unit conversions can be used to convert to sats/KW:
80          * satoshis-per-byte * 250
81          * satoshis-per-kbyte / 4
82          */
83         public int get_est_sat_per_1000_weight(org.ldk.enums.ConfirmationTarget confirmation_target) {
84                 int ret = bindings.FeeEstimator_get_est_sat_per_1000_weight(this.ptr, confirmation_target);
85                 Reference.reachabilityFence(this);
86                 Reference.reachabilityFence(confirmation_target);
87                 return ret;
88         }
89
90 }