Merge pull request #49 from TheBlueMatt/main
[ldk-java] / ts / structs / ChainMonitor.ts
1
2             
3 import CommonBase from './CommonBase';
4 import * as bindings from '../bindings' // TODO: figure out location
5
6
7
8             export default class ChainMonitor extends CommonBase {
9                 constructor(_dummy: object, ptr: number) {
10                     super(ptr);
11                 }
12
13                 
14                 protected finalize() {
15                     super.finalize();
16
17                     if (this.ptr != 0) {
18                         bindings.ChainMonitor_free(this.ptr);
19                     }
20                 }
21         public static ChainMonitor constructor_new(Option_FilterZ chain_source, BroadcasterInterface broadcaster, Logger logger, FeeEstimator feeest, Persist persister) {
22                 number ret = bindings.ChainMonitor_new(chain_source.ptr, broadcaster == null ? 0 : broadcaster.ptr, logger == null ? 0 : logger.ptr, feeest == null ? 0 : feeest.ptr, persister == null ? 0 : persister.ptr);
23                 const ret_hu_conv: ChainMonitor = new ChainMonitor(null, ret);
24                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
25                 ret_hu_conv.ptrs_to.add(broadcaster);
26                 ret_hu_conv.ptrs_to.add(logger);
27                 ret_hu_conv.ptrs_to.add(feeest);
28                 ret_hu_conv.ptrs_to.add(persister);
29                 return ret_hu_conv;
30         }
31
32         public Balance[] get_claimable_balances(ChannelDetails[] ignored_channels) {
33                 number[] ret = bindings.ChainMonitor_get_claimable_balances(this.ptr, ignored_channels != null ? Arrays.stream(ignored_channels).map(ignored_channels_conv_16 -> ignored_channels_conv_16 == null ? 0 : ignored_channels_conv_16.ptr & ~1).toArray(number[]::new) : null);
34                 Balance[] ret_conv_9_arr = new Balance[ret.length];
35                 for (int j = 0; j < ret.length; j++) {
36                         number ret_conv_9 = ret[j];
37                         Balance ret_conv_9_hu_conv = Balance.constr_from_ptr(ret_conv_9);
38                         ret_conv_9_hu_conv.ptrs_to.add(this);
39                         ret_conv_9_arr[j] = ret_conv_9_hu_conv;
40                 }
41                 return ret_conv_9_arr;
42         }
43
44         public Listen as_Listen() {
45                 number ret = bindings.ChainMonitor_as_Listen(this.ptr);
46                 Listen ret_hu_conv = new Listen(null, ret);
47                 ret_hu_conv.ptrs_to.add(this);
48                 return ret_hu_conv;
49         }
50
51         public Confirm as_Confirm() {
52                 number ret = bindings.ChainMonitor_as_Confirm(this.ptr);
53                 Confirm ret_hu_conv = new Confirm(null, ret);
54                 ret_hu_conv.ptrs_to.add(this);
55                 return ret_hu_conv;
56         }
57
58         public Watch as_Watch() {
59                 number ret = bindings.ChainMonitor_as_Watch(this.ptr);
60                 Watch ret_hu_conv = new Watch(null, ret);
61                 ret_hu_conv.ptrs_to.add(this);
62                 return ret_hu_conv;
63         }
64
65         public EventsProvider as_EventsProvider() {
66                 number ret = bindings.ChainMonitor_as_EventsProvider(this.ptr);
67                 EventsProvider ret_hu_conv = new EventsProvider(null, ret);
68                 ret_hu_conv.ptrs_to.add(this);
69                 return ret_hu_conv;
70         }
71
72 }