63379926273f973d2bfc6cfb346a819abee8c5c0
[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                 ret_hu_conv.ptrs_to.add(this);
25                 return ret_hu_conv;
26         }
27
28         public number get_byteslen() {
29                 number ret = bindings.Pong_get_byteslen(this.ptr);
30                 return ret;
31         }
32
33         public void set_byteslen(number val) {
34                 bindings.Pong_set_byteslen(this.ptr, val);
35         }
36
37         public static Pong constructor_new(number byteslen_arg) {
38                 number ret = bindings.Pong_new(byteslen_arg);
39                 const ret_hu_conv: Pong = new Pong(null, ret);
40                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
41                 return ret_hu_conv;
42         }
43
44         public Uint8Array write() {
45                 Uint8Array ret = bindings.Pong_write(this.ptr);
46                 return ret;
47         }
48
49         public static Result_PongDecodeErrorZ constructor_read(Uint8Array ser) {
50                 number ret = bindings.Pong_read(ser);
51                 Result_PongDecodeErrorZ ret_hu_conv = Result_PongDecodeErrorZ.constr_from_ptr(ret);
52                 return ret_hu_conv;
53         }
54
55 }