Bindings updates
[ldk-java] / ts / structs / Pong.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 Pong 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.Pong_free(this.ptr);
19                     }
20                 }
21         public Pong clone() {
22                 number ret = bindings.Pong_clone(this.ptr);
23                 const ret_hu_conv: Pong = new Pong(null, ret);
24                 return ret_hu_conv;
25         }
26
27         public number get_byteslen() {
28                 number ret = bindings.Pong_get_byteslen(this.ptr);
29                 return ret;
30         }
31
32         public void set_byteslen(number val) {
33                 bindings.Pong_set_byteslen(this.ptr, val);
34         }
35
36         public static Pong constructor_new(number byteslen_arg) {
37                 number ret = bindings.Pong_new(byteslen_arg);
38                 const ret_hu_conv: Pong = new Pong(null, ret);
39                 return ret_hu_conv;
40         }
41
42         public Uint8Array write() {
43                 Uint8Array ret = bindings.Pong_write(this.ptr);
44                 return ret;
45         }
46
47         public static Result_PongDecodeErrorZ constructor_read(Uint8Array ser) {
48                 number ret = bindings.Pong_read(ser);
49                 Result_PongDecodeErrorZ ret_hu_conv = Result_PongDecodeErrorZ.constr_from_ptr(ret);
50                 return ret_hu_conv;
51         }
52
53 }