-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathrpc.d.ts
666 lines (532 loc) · 21.4 KB
/
rpc.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
import * as $protobuf from "protobufjs";
/** Properties of a RPC. */
export interface IRPC {
/** RPC subscriptions */
subscriptions?: (RPC.ISubOpts[]|null);
/** RPC msgs */
msgs?: (RPC.IMessage[]|null);
/** RPC control */
control?: (RPC.IControlMessage|null);
}
/** Represents a RPC. */
export class RPC implements IRPC {
/**
* Constructs a new RPC.
* @param [p] Properties to set
*/
constructor(p?: IRPC);
/** RPC subscriptions. */
public subscriptions: RPC.ISubOpts[];
/** RPC msgs. */
public msgs: RPC.IMessage[];
/** RPC control. */
public control?: (RPC.IControlMessage|null);
/** RPC _control. */
public _control?: "control";
/**
* Encodes the specified RPC message. Does not implicitly {@link RPC.verify|verify} messages.
* @param m RPC message or plain object to encode
* @param [w] Writer to encode to
* @returns Writer
*/
public static encode(m: IRPC, w?: $protobuf.Writer): $protobuf.Writer;
/**
* Decodes a RPC message from the specified reader or buffer.
* @param r Reader or buffer to decode from
* @param [l] Message length if known beforehand
* @returns RPC
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
public static decode(r: ($protobuf.Reader|Uint8Array), l?: number): RPC;
/**
* Creates a RPC message from a plain object. Also converts values to their respective internal types.
* @param d Plain object
* @returns RPC
*/
public static fromObject(d: { [k: string]: any }): RPC;
/**
* Creates a plain object from a RPC message. Also converts values to other types if specified.
* @param m RPC
* @param [o] Conversion options
* @returns Plain object
*/
public static toObject(m: RPC, o?: $protobuf.IConversionOptions): { [k: string]: any };
/**
* Converts this RPC to JSON.
* @returns JSON object
*/
public toJSON(): { [k: string]: any };
}
export namespace RPC {
/** Properties of a SubOpts. */
interface ISubOpts {
/** SubOpts subscribe */
subscribe?: (boolean|null);
/** SubOpts topicID */
topicID?: (string|null);
}
/** Represents a SubOpts. */
class SubOpts implements ISubOpts {
/**
* Constructs a new SubOpts.
* @param [p] Properties to set
*/
constructor(p?: RPC.ISubOpts);
/** SubOpts subscribe. */
public subscribe?: (boolean|null);
/** SubOpts topicID. */
public topicID?: (string|null);
/** SubOpts _subscribe. */
public _subscribe?: "subscribe";
/** SubOpts _topicID. */
public _topicID?: "topicID";
/**
* Encodes the specified SubOpts message. Does not implicitly {@link RPC.SubOpts.verify|verify} messages.
* @param m SubOpts message or plain object to encode
* @param [w] Writer to encode to
* @returns Writer
*/
public static encode(m: RPC.ISubOpts, w?: $protobuf.Writer): $protobuf.Writer;
/**
* Decodes a SubOpts message from the specified reader or buffer.
* @param r Reader or buffer to decode from
* @param [l] Message length if known beforehand
* @returns SubOpts
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
public static decode(r: ($protobuf.Reader|Uint8Array), l?: number): RPC.SubOpts;
/**
* Creates a SubOpts message from a plain object. Also converts values to their respective internal types.
* @param d Plain object
* @returns SubOpts
*/
public static fromObject(d: { [k: string]: any }): RPC.SubOpts;
/**
* Creates a plain object from a SubOpts message. Also converts values to other types if specified.
* @param m SubOpts
* @param [o] Conversion options
* @returns Plain object
*/
public static toObject(m: RPC.SubOpts, o?: $protobuf.IConversionOptions): { [k: string]: any };
/**
* Converts this SubOpts to JSON.
* @returns JSON object
*/
public toJSON(): { [k: string]: any };
}
/** Properties of a Message. */
interface IMessage {
/** Message from */
from?: (Uint8Array|null);
/** Message data */
data?: (Uint8Array|null);
/** Message seqno */
seqno?: (Uint8Array|null);
/** Message topicIDs */
topicIDs?: (string[]|null);
/** Message signature */
signature?: (Uint8Array|null);
/** Message key */
key?: (Uint8Array|null);
}
/** Represents a Message. */
class Message implements IMessage {
/**
* Constructs a new Message.
* @param [p] Properties to set
*/
constructor(p?: RPC.IMessage);
/** Message from. */
public from?: (Uint8Array|null);
/** Message data. */
public data?: (Uint8Array|null);
/** Message seqno. */
public seqno?: (Uint8Array|null);
/** Message topicIDs. */
public topicIDs: string[];
/** Message signature. */
public signature?: (Uint8Array|null);
/** Message key. */
public key?: (Uint8Array|null);
/** Message _from. */
public _from?: "from";
/** Message _data. */
public _data?: "data";
/** Message _seqno. */
public _seqno?: "seqno";
/** Message _signature. */
public _signature?: "signature";
/** Message _key. */
public _key?: "key";
/**
* Encodes the specified Message message. Does not implicitly {@link RPC.Message.verify|verify} messages.
* @param m Message message or plain object to encode
* @param [w] Writer to encode to
* @returns Writer
*/
public static encode(m: RPC.IMessage, w?: $protobuf.Writer): $protobuf.Writer;
/**
* Decodes a Message message from the specified reader or buffer.
* @param r Reader or buffer to decode from
* @param [l] Message length if known beforehand
* @returns Message
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
public static decode(r: ($protobuf.Reader|Uint8Array), l?: number): RPC.Message;
/**
* Creates a Message message from a plain object. Also converts values to their respective internal types.
* @param d Plain object
* @returns Message
*/
public static fromObject(d: { [k: string]: any }): RPC.Message;
/**
* Creates a plain object from a Message message. Also converts values to other types if specified.
* @param m Message
* @param [o] Conversion options
* @returns Plain object
*/
public static toObject(m: RPC.Message, o?: $protobuf.IConversionOptions): { [k: string]: any };
/**
* Converts this Message to JSON.
* @returns JSON object
*/
public toJSON(): { [k: string]: any };
}
/** Properties of a ControlMessage. */
interface IControlMessage {
/** ControlMessage ihave */
ihave?: (RPC.IControlIHave[]|null);
/** ControlMessage iwant */
iwant?: (RPC.IControlIWant[]|null);
/** ControlMessage graft */
graft?: (RPC.IControlGraft[]|null);
/** ControlMessage prune */
prune?: (RPC.IControlPrune[]|null);
}
/** Represents a ControlMessage. */
class ControlMessage implements IControlMessage {
/**
* Constructs a new ControlMessage.
* @param [p] Properties to set
*/
constructor(p?: RPC.IControlMessage);
/** ControlMessage ihave. */
public ihave: RPC.IControlIHave[];
/** ControlMessage iwant. */
public iwant: RPC.IControlIWant[];
/** ControlMessage graft. */
public graft: RPC.IControlGraft[];
/** ControlMessage prune. */
public prune: RPC.IControlPrune[];
/**
* Encodes the specified ControlMessage message. Does not implicitly {@link RPC.ControlMessage.verify|verify} messages.
* @param m ControlMessage message or plain object to encode
* @param [w] Writer to encode to
* @returns Writer
*/
public static encode(m: RPC.IControlMessage, w?: $protobuf.Writer): $protobuf.Writer;
/**
* Decodes a ControlMessage message from the specified reader or buffer.
* @param r Reader or buffer to decode from
* @param [l] Message length if known beforehand
* @returns ControlMessage
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
public static decode(r: ($protobuf.Reader|Uint8Array), l?: number): RPC.ControlMessage;
/**
* Creates a ControlMessage message from a plain object. Also converts values to their respective internal types.
* @param d Plain object
* @returns ControlMessage
*/
public static fromObject(d: { [k: string]: any }): RPC.ControlMessage;
/**
* Creates a plain object from a ControlMessage message. Also converts values to other types if specified.
* @param m ControlMessage
* @param [o] Conversion options
* @returns Plain object
*/
public static toObject(m: RPC.ControlMessage, o?: $protobuf.IConversionOptions): { [k: string]: any };
/**
* Converts this ControlMessage to JSON.
* @returns JSON object
*/
public toJSON(): { [k: string]: any };
}
/** Properties of a ControlIHave. */
interface IControlIHave {
/** ControlIHave topicID */
topicID?: (string|null);
/** ControlIHave messageIDs */
messageIDs?: (Uint8Array[]|null);
}
/** Represents a ControlIHave. */
class ControlIHave implements IControlIHave {
/**
* Constructs a new ControlIHave.
* @param [p] Properties to set
*/
constructor(p?: RPC.IControlIHave);
/** ControlIHave topicID. */
public topicID?: (string|null);
/** ControlIHave messageIDs. */
public messageIDs: Uint8Array[];
/** ControlIHave _topicID. */
public _topicID?: "topicID";
/**
* Encodes the specified ControlIHave message. Does not implicitly {@link RPC.ControlIHave.verify|verify} messages.
* @param m ControlIHave message or plain object to encode
* @param [w] Writer to encode to
* @returns Writer
*/
public static encode(m: RPC.IControlIHave, w?: $protobuf.Writer): $protobuf.Writer;
/**
* Decodes a ControlIHave message from the specified reader or buffer.
* @param r Reader or buffer to decode from
* @param [l] Message length if known beforehand
* @returns ControlIHave
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
public static decode(r: ($protobuf.Reader|Uint8Array), l?: number): RPC.ControlIHave;
/**
* Creates a ControlIHave message from a plain object. Also converts values to their respective internal types.
* @param d Plain object
* @returns ControlIHave
*/
public static fromObject(d: { [k: string]: any }): RPC.ControlIHave;
/**
* Creates a plain object from a ControlIHave message. Also converts values to other types if specified.
* @param m ControlIHave
* @param [o] Conversion options
* @returns Plain object
*/
public static toObject(m: RPC.ControlIHave, o?: $protobuf.IConversionOptions): { [k: string]: any };
/**
* Converts this ControlIHave to JSON.
* @returns JSON object
*/
public toJSON(): { [k: string]: any };
}
/** Properties of a ControlIWant. */
interface IControlIWant {
/** ControlIWant messageIDs */
messageIDs?: (Uint8Array[]|null);
}
/** Represents a ControlIWant. */
class ControlIWant implements IControlIWant {
/**
* Constructs a new ControlIWant.
* @param [p] Properties to set
*/
constructor(p?: RPC.IControlIWant);
/** ControlIWant messageIDs. */
public messageIDs: Uint8Array[];
/**
* Encodes the specified ControlIWant message. Does not implicitly {@link RPC.ControlIWant.verify|verify} messages.
* @param m ControlIWant message or plain object to encode
* @param [w] Writer to encode to
* @returns Writer
*/
public static encode(m: RPC.IControlIWant, w?: $protobuf.Writer): $protobuf.Writer;
/**
* Decodes a ControlIWant message from the specified reader or buffer.
* @param r Reader or buffer to decode from
* @param [l] Message length if known beforehand
* @returns ControlIWant
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
public static decode(r: ($protobuf.Reader|Uint8Array), l?: number): RPC.ControlIWant;
/**
* Creates a ControlIWant message from a plain object. Also converts values to their respective internal types.
* @param d Plain object
* @returns ControlIWant
*/
public static fromObject(d: { [k: string]: any }): RPC.ControlIWant;
/**
* Creates a plain object from a ControlIWant message. Also converts values to other types if specified.
* @param m ControlIWant
* @param [o] Conversion options
* @returns Plain object
*/
public static toObject(m: RPC.ControlIWant, o?: $protobuf.IConversionOptions): { [k: string]: any };
/**
* Converts this ControlIWant to JSON.
* @returns JSON object
*/
public toJSON(): { [k: string]: any };
}
/** Properties of a ControlGraft. */
interface IControlGraft {
/** ControlGraft topicID */
topicID?: (string|null);
}
/** Represents a ControlGraft. */
class ControlGraft implements IControlGraft {
/**
* Constructs a new ControlGraft.
* @param [p] Properties to set
*/
constructor(p?: RPC.IControlGraft);
/** ControlGraft topicID. */
public topicID?: (string|null);
/** ControlGraft _topicID. */
public _topicID?: "topicID";
/**
* Encodes the specified ControlGraft message. Does not implicitly {@link RPC.ControlGraft.verify|verify} messages.
* @param m ControlGraft message or plain object to encode
* @param [w] Writer to encode to
* @returns Writer
*/
public static encode(m: RPC.IControlGraft, w?: $protobuf.Writer): $protobuf.Writer;
/**
* Decodes a ControlGraft message from the specified reader or buffer.
* @param r Reader or buffer to decode from
* @param [l] Message length if known beforehand
* @returns ControlGraft
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
public static decode(r: ($protobuf.Reader|Uint8Array), l?: number): RPC.ControlGraft;
/**
* Creates a ControlGraft message from a plain object. Also converts values to their respective internal types.
* @param d Plain object
* @returns ControlGraft
*/
public static fromObject(d: { [k: string]: any }): RPC.ControlGraft;
/**
* Creates a plain object from a ControlGraft message. Also converts values to other types if specified.
* @param m ControlGraft
* @param [o] Conversion options
* @returns Plain object
*/
public static toObject(m: RPC.ControlGraft, o?: $protobuf.IConversionOptions): { [k: string]: any };
/**
* Converts this ControlGraft to JSON.
* @returns JSON object
*/
public toJSON(): { [k: string]: any };
}
/** Properties of a ControlPrune. */
interface IControlPrune {
/** ControlPrune topicID */
topicID?: (string|null);
/** ControlPrune peers */
peers?: (RPC.IPeerInfo[]|null);
/** ControlPrune backoff */
backoff?: (number|null);
}
/** Represents a ControlPrune. */
class ControlPrune implements IControlPrune {
/**
* Constructs a new ControlPrune.
* @param [p] Properties to set
*/
constructor(p?: RPC.IControlPrune);
/** ControlPrune topicID. */
public topicID?: (string|null);
/** ControlPrune peers. */
public peers: RPC.IPeerInfo[];
/** ControlPrune backoff. */
public backoff?: (number|null);
/** ControlPrune _topicID. */
public _topicID?: "topicID";
/** ControlPrune _backoff. */
public _backoff?: "backoff";
/**
* Encodes the specified ControlPrune message. Does not implicitly {@link RPC.ControlPrune.verify|verify} messages.
* @param m ControlPrune message or plain object to encode
* @param [w] Writer to encode to
* @returns Writer
*/
public static encode(m: RPC.IControlPrune, w?: $protobuf.Writer): $protobuf.Writer;
/**
* Decodes a ControlPrune message from the specified reader or buffer.
* @param r Reader or buffer to decode from
* @param [l] Message length if known beforehand
* @returns ControlPrune
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
public static decode(r: ($protobuf.Reader|Uint8Array), l?: number): RPC.ControlPrune;
/**
* Creates a ControlPrune message from a plain object. Also converts values to their respective internal types.
* @param d Plain object
* @returns ControlPrune
*/
public static fromObject(d: { [k: string]: any }): RPC.ControlPrune;
/**
* Creates a plain object from a ControlPrune message. Also converts values to other types if specified.
* @param m ControlPrune
* @param [o] Conversion options
* @returns Plain object
*/
public static toObject(m: RPC.ControlPrune, o?: $protobuf.IConversionOptions): { [k: string]: any };
/**
* Converts this ControlPrune to JSON.
* @returns JSON object
*/
public toJSON(): { [k: string]: any };
}
/** Properties of a PeerInfo. */
interface IPeerInfo {
/** PeerInfo peerID */
peerID?: (Uint8Array|null);
/** PeerInfo signedPeerRecord */
signedPeerRecord?: (Uint8Array|null);
}
/** Represents a PeerInfo. */
class PeerInfo implements IPeerInfo {
/**
* Constructs a new PeerInfo.
* @param [p] Properties to set
*/
constructor(p?: RPC.IPeerInfo);
/** PeerInfo peerID. */
public peerID?: (Uint8Array|null);
/** PeerInfo signedPeerRecord. */
public signedPeerRecord?: (Uint8Array|null);
/** PeerInfo _peerID. */
public _peerID?: "peerID";
/** PeerInfo _signedPeerRecord. */
public _signedPeerRecord?: "signedPeerRecord";
/**
* Encodes the specified PeerInfo message. Does not implicitly {@link RPC.PeerInfo.verify|verify} messages.
* @param m PeerInfo message or plain object to encode
* @param [w] Writer to encode to
* @returns Writer
*/
public static encode(m: RPC.IPeerInfo, w?: $protobuf.Writer): $protobuf.Writer;
/**
* Decodes a PeerInfo message from the specified reader or buffer.
* @param r Reader or buffer to decode from
* @param [l] Message length if known beforehand
* @returns PeerInfo
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
public static decode(r: ($protobuf.Reader|Uint8Array), l?: number): RPC.PeerInfo;
/**
* Creates a PeerInfo message from a plain object. Also converts values to their respective internal types.
* @param d Plain object
* @returns PeerInfo
*/
public static fromObject(d: { [k: string]: any }): RPC.PeerInfo;
/**
* Creates a plain object from a PeerInfo message. Also converts values to other types if specified.
* @param m PeerInfo
* @param [o] Conversion options
* @returns Plain object
*/
public static toObject(m: RPC.PeerInfo, o?: $protobuf.IConversionOptions): { [k: string]: any };
/**
* Converts this PeerInfo to JSON.
* @returns JSON object
*/
public toJSON(): { [k: string]: any };
}
}