-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathClientServiceHandle.java
More file actions
612 lines (539 loc) · 24.5 KB
/
ClientServiceHandle.java
File metadata and controls
612 lines (539 loc) · 24.5 KB
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
// Copyright (c) 2023 - Restate Software, Inc., Restate GmbH
//
// This file is part of the Restate Java SDK,
// which is released under the MIT license.
//
// You can find a copy of the license in file LICENSE in the root
// directory of this repository or package, or at
// https://github.com/restatedev/sdk-java/blob/main/LICENSE
package dev.restate.client;
import dev.restate.common.InvocationOptions;
import java.time.Duration;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionException;
import java.util.function.BiConsumer;
import java.util.function.BiFunction;
import java.util.function.Consumer;
import java.util.function.Function;
/**
* <b>EXPERIMENTAL API:</b> This interface is part of the new reflection-based API and may change in
* future releases.
*
* <p>Advanced API handle for invoking Restate services, virtual objects, or workflows from the
* ingress (outside of a handler). This handle provides advanced invocation capabilities including:
*
* <ul>
* <li>Async request handling with {@link CompletableFuture}
* <li>Invocation options such as idempotency keys
* <li>Fire-and-forget requests via {@code send()}
* <li>Access to full {@link Response} metadata
* </ul>
*
* <p>Use this handle to perform requests with method references:
*
* <pre>{@code
* Client client = Client.connect("http://localhost:8080");
*
* // 1. Use call() with method reference and wait for the result
* Response<GreetingResponse> response = client.serviceHandle(Greeter.class)
* .call(Greeter::greet, new Greeting("Alice"));
*
* // 2. Use send() for one-way invocation without waiting
* SendResponse<GreetingResponse> sendResponse = client.serviceHandle(Greeter.class)
* .send(Greeter::greet, new Greeting("Alice"));
* }</pre>
*
* <p>Create instances using {@link Client#serviceHandle(Class)}, {@link
* Client#virtualObjectHandle(Class, String)}, or {@link Client#workflowHandle(Class, String)}.
*
* <p>For simple synchronous request-response interactions returning just the output, consider using
* the simple proxy API instead: {@link Client#service(Class)}, {@link Client#virtualObject(Class,
* String)}, or {@link Client#workflow(Class, String)}.
*
* @param <SVC> the service interface type
*/
@org.jetbrains.annotations.ApiStatus.Experimental
public interface ClientServiceHandle<SVC> {
/**
* <b>EXPERIMENTAL API:</b> Invoke a service method with input and wait for the response.
*
* <pre>{@code
* // Call with method reference and input
* Response<GreetingResponse> response = client.service(Greeter.class)
* .call(Greeter::greet, new Greeting("Alice"));
* }</pre>
*
* @param s method reference (e.g., {@code Greeter::greet})
* @param input the input parameter to pass to the method
* @return a {@link Response} wrapping the result
*/
@org.jetbrains.annotations.ApiStatus.Experimental
default <I, O> Response<O> call(BiFunction<SVC, I, O> s, I input) {
return call(s, input, InvocationOptions.DEFAULT);
}
@org.jetbrains.annotations.ApiStatus.Experimental
default <I, O> Response<O> call(
BiFunction<SVC, I, O> s, I input, InvocationOptions.Builder options) {
return call(s, input, options.build());
}
@org.jetbrains.annotations.ApiStatus.Experimental
default <I, O> Response<O> call(
BiFunction<SVC, I, O> s, I input, InvocationOptions invocationOptions) {
try {
return callAsync(s, input, invocationOptions).join();
} catch (CompletionException e) {
if (e.getCause() instanceof RuntimeException) {
throw (RuntimeException) e.getCause();
}
throw new RuntimeException(e.getCause());
}
}
// call - BiConsumer variants
@org.jetbrains.annotations.ApiStatus.Experimental
default <I> Response<Void> call(BiConsumer<SVC, I> s, I input) {
return call(s, input, InvocationOptions.DEFAULT);
}
@org.jetbrains.annotations.ApiStatus.Experimental
default <I> Response<Void> call(
BiConsumer<SVC, I> s, I input, InvocationOptions.Builder options) {
return call(s, input, options.build());
}
@org.jetbrains.annotations.ApiStatus.Experimental
default <I> Response<Void> call(
BiConsumer<SVC, I> s, I input, InvocationOptions invocationOptions) {
try {
return callAsync(s, input, invocationOptions).join();
} catch (CompletionException e) {
if (e.getCause() instanceof RuntimeException) {
throw (RuntimeException) e.getCause();
}
throw new RuntimeException(e.getCause());
}
}
// call - Function variants
@org.jetbrains.annotations.ApiStatus.Experimental
default <O> Response<O> call(Function<SVC, O> s) {
return call(s, InvocationOptions.DEFAULT);
}
@org.jetbrains.annotations.ApiStatus.Experimental
default <O> Response<O> call(Function<SVC, O> s, InvocationOptions.Builder options) {
return call(s, options.build());
}
@org.jetbrains.annotations.ApiStatus.Experimental
default <O> Response<O> call(Function<SVC, O> s, InvocationOptions invocationOptions) {
try {
return callAsync(s, invocationOptions).join();
} catch (CompletionException e) {
if (e.getCause() instanceof RuntimeException) {
throw (RuntimeException) e.getCause();
}
throw new RuntimeException(e.getCause());
}
}
// call - Consumer variants
@org.jetbrains.annotations.ApiStatus.Experimental
default Response<Void> call(Consumer<SVC> s) {
return call(s, InvocationOptions.DEFAULT);
}
@org.jetbrains.annotations.ApiStatus.Experimental
default Response<Void> call(Consumer<SVC> s, InvocationOptions.Builder options) {
return call(s, options.build());
}
@org.jetbrains.annotations.ApiStatus.Experimental
default Response<Void> call(Consumer<SVC> s, InvocationOptions invocationOptions) {
try {
return callAsync(s, invocationOptions).join();
} catch (CompletionException e) {
if (e.getCause() instanceof RuntimeException) {
throw (RuntimeException) e.getCause();
}
throw new RuntimeException(e.getCause());
}
}
// callAsync - BiFunction variants
@org.jetbrains.annotations.ApiStatus.Experimental
default <I, O> CompletableFuture<Response<O>> callAsync(BiFunction<SVC, I, O> s, I input) {
return callAsync(s, input, InvocationOptions.DEFAULT);
}
@org.jetbrains.annotations.ApiStatus.Experimental
default <I, O> CompletableFuture<Response<O>> callAsync(
BiFunction<SVC, I, O> s, I input, InvocationOptions.Builder options) {
return callAsync(s, input, options.build());
}
@org.jetbrains.annotations.ApiStatus.Experimental
<I, O> CompletableFuture<Response<O>> callAsync(
BiFunction<SVC, I, O> s, I input, InvocationOptions invocationOptions);
// callAsync - BiConsumer variants
@org.jetbrains.annotations.ApiStatus.Experimental
default <I> CompletableFuture<Response<Void>> callAsync(BiConsumer<SVC, I> s, I input) {
return callAsync(s, input, InvocationOptions.DEFAULT);
}
@org.jetbrains.annotations.ApiStatus.Experimental
default <I> CompletableFuture<Response<Void>> callAsync(
BiConsumer<SVC, I> s, I input, InvocationOptions.Builder options) {
return callAsync(s, input, options.build());
}
@org.jetbrains.annotations.ApiStatus.Experimental
<I> CompletableFuture<Response<Void>> callAsync(
BiConsumer<SVC, I> s, I input, InvocationOptions invocationOptions);
// callAsync - Function variants
@org.jetbrains.annotations.ApiStatus.Experimental
default <O> CompletableFuture<Response<O>> callAsync(Function<SVC, O> s) {
return callAsync(s, InvocationOptions.DEFAULT);
}
@org.jetbrains.annotations.ApiStatus.Experimental
default <O> CompletableFuture<Response<O>> callAsync(
Function<SVC, O> s, InvocationOptions.Builder options) {
return callAsync(s, options.build());
}
@org.jetbrains.annotations.ApiStatus.Experimental
<O> CompletableFuture<Response<O>> callAsync(
Function<SVC, O> s, InvocationOptions invocationOptions);
// callAsync - Consumer variants
@org.jetbrains.annotations.ApiStatus.Experimental
default CompletableFuture<Response<Void>> callAsync(Consumer<SVC> s) {
return callAsync(s, InvocationOptions.DEFAULT);
}
@org.jetbrains.annotations.ApiStatus.Experimental
default CompletableFuture<Response<Void>> callAsync(
Consumer<SVC> s, InvocationOptions.Builder options) {
return callAsync(s, options.build());
}
@org.jetbrains.annotations.ApiStatus.Experimental
CompletableFuture<Response<Void>> callAsync(Consumer<SVC> s, InvocationOptions invocationOptions);
// send - BiFunction variants
/**
* <b>EXPERIMENTAL API:</b> Send a one-way invocation without waiting for the response.
*
* <pre>{@code
* // Send without waiting for response
* SendResponse<GreetingResponse> sendResponse = client.service(Greeter.class)
* .send(Greeter::greet, new Greeting("Alice"));
* }</pre>
*/
@org.jetbrains.annotations.ApiStatus.Experimental
default <I, O> SendResponse<O> send(BiFunction<SVC, I, O> s, I input) {
return send(s, input, InvocationOptions.DEFAULT);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #send(BiFunction, Object)}, with invocation options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <I, O> SendResponse<O> send(
BiFunction<SVC, I, O> s, I input, InvocationOptions.Builder options) {
return send(s, input, options.build());
}
/** <b>EXPERIMENTAL API:</b> Like {@link #send(BiFunction, Object)}, with invocation options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <I, O> SendResponse<O> send(
BiFunction<SVC, I, O> s, I input, InvocationOptions invocationOptions) {
return send(s, input, null, invocationOptions);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #send(BiFunction, Object)}, with a delay. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <I, O> SendResponse<O> send(BiFunction<SVC, I, O> s, I input, Duration delay) {
return send(s, input, delay, InvocationOptions.DEFAULT);
}
/**
* <b>EXPERIMENTAL API:</b> Like {@link #send(BiFunction, Object)}, with a delay and invocation
* options.
*/
@org.jetbrains.annotations.ApiStatus.Experimental
default <I, O> SendResponse<O> send(
BiFunction<SVC, I, O> s, I input, Duration delay, InvocationOptions.Builder options) {
return send(s, input, delay, options.build());
}
/**
* <b>EXPERIMENTAL API:</b> Like {@link #send(BiFunction, Object)}, with a delay and invocation
* options.
*/
@org.jetbrains.annotations.ApiStatus.Experimental
default <I, O> SendResponse<O> send(
BiFunction<SVC, I, O> s, I input, Duration delay, InvocationOptions invocationOptions) {
try {
return sendAsync(s, input, delay, invocationOptions).join();
} catch (CompletionException e) {
if (e.getCause() instanceof RuntimeException) {
throw (RuntimeException) e.getCause();
}
throw new RuntimeException(e.getCause());
}
}
// send - BiConsumer variants
/**
* <b>EXPERIMENTAL API:</b> Like {@link #send(BiFunction, Object)}, for methods without a return
* value.
*/
@org.jetbrains.annotations.ApiStatus.Experimental
default <I> SendResponse<Void> send(BiConsumer<SVC, I> s, I input) {
return send(s, input, InvocationOptions.DEFAULT);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #send(BiConsumer, Object)}, with invocation options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <I> SendResponse<Void> send(
BiConsumer<SVC, I> s, I input, InvocationOptions.Builder options) {
return send(s, input, options.build());
}
/** <b>EXPERIMENTAL API:</b> Like {@link #send(BiConsumer, Object)}, with invocation options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <I> SendResponse<Void> send(
BiConsumer<SVC, I> s, I input, InvocationOptions invocationOptions) {
return send(s, input, null, invocationOptions);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #send(BiConsumer, Object)}, with a delay. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <I> SendResponse<Void> send(BiConsumer<SVC, I> s, I input, Duration delay) {
return send(s, input, delay, InvocationOptions.DEFAULT);
}
/**
* <b>EXPERIMENTAL API:</b> Like {@link #send(BiConsumer, Object)}, with a delay and invocation
* options.
*/
@org.jetbrains.annotations.ApiStatus.Experimental
default <I> SendResponse<Void> send(
BiConsumer<SVC, I> s, I input, Duration delay, InvocationOptions.Builder options) {
return send(s, input, delay, options.build());
}
/**
* <b>EXPERIMENTAL API:</b> Like {@link #send(BiConsumer, Object)}, with a delay and invocation
* options.
*/
@org.jetbrains.annotations.ApiStatus.Experimental
default <I> SendResponse<Void> send(
BiConsumer<SVC, I> s, I input, Duration delay, InvocationOptions invocationOptions) {
try {
return sendAsync(s, input, delay, invocationOptions).join();
} catch (CompletionException e) {
if (e.getCause() instanceof RuntimeException) {
throw (RuntimeException) e.getCause();
}
throw new RuntimeException(e.getCause());
}
}
// send - Function variants
/** <b>EXPERIMENTAL API:</b> Like {@link #send(BiFunction, Object)}, for methods without input. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <O> SendResponse<O> send(Function<SVC, O> s) {
return send(s, InvocationOptions.DEFAULT);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #send(Function)}, with invocation options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <O> SendResponse<O> send(Function<SVC, O> s, InvocationOptions.Builder options) {
return send(s, options.build());
}
/** <b>EXPERIMENTAL API:</b> Like {@link #send(Function)}, with invocation options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <O> SendResponse<O> send(Function<SVC, O> s, InvocationOptions invocationOptions) {
return send(s, null, invocationOptions);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #send(Function)}, with a delay. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <O> SendResponse<O> send(Function<SVC, O> s, Duration delay) {
return send(s, delay, InvocationOptions.DEFAULT);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #send(Function)}, with a delay and invocation options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <O> SendResponse<O> send(
Function<SVC, O> s, Duration delay, InvocationOptions.Builder options) {
return send(s, delay, options.build());
}
/** <b>EXPERIMENTAL API:</b> Like {@link #send(Function)}, with a delay and invocation options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <O> SendResponse<O> send(
Function<SVC, O> s, Duration delay, InvocationOptions invocationOptions) {
try {
return sendAsync(s, delay, invocationOptions).join();
} catch (CompletionException e) {
if (e.getCause() instanceof RuntimeException) {
throw (RuntimeException) e.getCause();
}
throw new RuntimeException(e.getCause());
}
}
// send - Consumer variants
/**
* <b>EXPERIMENTAL API:</b> Like {@link #send(BiFunction, Object)}, for methods without input or
* return value.
*/
@org.jetbrains.annotations.ApiStatus.Experimental
default SendResponse<Void> send(Consumer<SVC> s) {
return send(s, InvocationOptions.DEFAULT);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #send(Consumer)}, with invocation options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default SendResponse<Void> send(Consumer<SVC> s, InvocationOptions.Builder options) {
return send(s, options.build());
}
/** <b>EXPERIMENTAL API:</b> Like {@link #send(Consumer)}, with invocation options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default SendResponse<Void> send(Consumer<SVC> s, InvocationOptions invocationOptions) {
return send(s, null, invocationOptions);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #send(Consumer)}, with a delay. */
@org.jetbrains.annotations.ApiStatus.Experimental
default SendResponse<Void> send(Consumer<SVC> s, Duration delay) {
return send(s, delay, InvocationOptions.DEFAULT);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #send(Consumer)}, with a delay and invocation options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default SendResponse<Void> send(
Consumer<SVC> s, Duration delay, InvocationOptions.Builder options) {
return send(s, delay, options.build());
}
/** <b>EXPERIMENTAL API:</b> Like {@link #send(Consumer)}, with a delay and invocation options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default SendResponse<Void> send(
Consumer<SVC> s, Duration delay, InvocationOptions invocationOptions) {
try {
return sendAsync(s, delay, invocationOptions).join();
} catch (CompletionException e) {
if (e.getCause() instanceof RuntimeException) {
throw (RuntimeException) e.getCause();
}
throw new RuntimeException(e.getCause());
}
}
// sendAsync - BiFunction variants
/** <b>EXPERIMENTAL API:</b> Async version of {@link #send(BiFunction, Object)}. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <I, O> CompletableFuture<SendResponse<O>> sendAsync(BiFunction<SVC, I, O> s, I input) {
return sendAsync(s, input, InvocationOptions.DEFAULT);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(BiFunction, Object)}, with options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <I, O> CompletableFuture<SendResponse<O>> sendAsync(
BiFunction<SVC, I, O> s, I input, InvocationOptions.Builder options) {
return sendAsync(s, input, options.build());
}
/** <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(BiFunction, Object)}, with options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <I, O> CompletableFuture<SendResponse<O>> sendAsync(
BiFunction<SVC, I, O> s, I input, InvocationOptions invocationOptions) {
return sendAsync(s, input, null, invocationOptions);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(BiFunction, Object)}, with a delay. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <I, O> CompletableFuture<SendResponse<O>> sendAsync(
BiFunction<SVC, I, O> s, I input, Duration delay) {
return sendAsync(s, input, delay, InvocationOptions.DEFAULT);
}
/**
* <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(BiFunction, Object)}, with delay and options.
*/
@org.jetbrains.annotations.ApiStatus.Experimental
default <I, O> CompletableFuture<SendResponse<O>> sendAsync(
BiFunction<SVC, I, O> s, I input, Duration delay, InvocationOptions.Builder options) {
return sendAsync(s, input, delay, options.build());
}
/**
* <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(BiFunction, Object)}, with delay and options.
*/
@org.jetbrains.annotations.ApiStatus.Experimental
<I, O> CompletableFuture<SendResponse<O>> sendAsync(
BiFunction<SVC, I, O> s, I input, Duration delay, InvocationOptions invocationOptions);
// sendAsync - BiConsumer variants
/** <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(BiFunction, Object)}, for void methods. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <I> CompletableFuture<SendResponse<Void>> sendAsync(BiConsumer<SVC, I> s, I input) {
return sendAsync(s, input, InvocationOptions.DEFAULT);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(BiConsumer, Object)}, with options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <I> CompletableFuture<SendResponse<Void>> sendAsync(
BiConsumer<SVC, I> s, I input, InvocationOptions.Builder options) {
return sendAsync(s, input, options.build());
}
/** <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(BiConsumer, Object)}, with options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <I> CompletableFuture<SendResponse<Void>> sendAsync(
BiConsumer<SVC, I> s, I input, InvocationOptions invocationOptions) {
return sendAsync(s, input, null, invocationOptions);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(BiConsumer, Object)}, with a delay. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <I> CompletableFuture<SendResponse<Void>> sendAsync(
BiConsumer<SVC, I> s, I input, Duration delay) {
return sendAsync(s, input, delay, InvocationOptions.DEFAULT);
}
/**
* <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(BiConsumer, Object)}, with delay and options.
*/
@org.jetbrains.annotations.ApiStatus.Experimental
default <I> CompletableFuture<SendResponse<Void>> sendAsync(
BiConsumer<SVC, I> s, I input, Duration delay, InvocationOptions.Builder options) {
return sendAsync(s, input, delay, options.build());
}
/**
* <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(BiConsumer, Object)}, with delay and options.
*/
@org.jetbrains.annotations.ApiStatus.Experimental
<I> CompletableFuture<SendResponse<Void>> sendAsync(
BiConsumer<SVC, I> s, I input, Duration delay, InvocationOptions invocationOptions);
// sendAsync - Function variants
/** <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(BiFunction, Object)}, for no-input methods. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <O> CompletableFuture<SendResponse<O>> sendAsync(Function<SVC, O> s) {
return sendAsync(s, InvocationOptions.DEFAULT);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(Function)}, with options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <O> CompletableFuture<SendResponse<O>> sendAsync(
Function<SVC, O> s, InvocationOptions.Builder options) {
return sendAsync(s, options.build());
}
/** <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(Function)}, with options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <O> CompletableFuture<SendResponse<O>> sendAsync(
Function<SVC, O> s, InvocationOptions invocationOptions) {
return sendAsync(s, null, invocationOptions);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(Function)}, with a delay. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <O> CompletableFuture<SendResponse<O>> sendAsync(Function<SVC, O> s, Duration delay) {
return sendAsync(s, delay, InvocationOptions.DEFAULT);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(Function)}, with delay and options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default <O> CompletableFuture<SendResponse<O>> sendAsync(
Function<SVC, O> s, Duration delay, InvocationOptions.Builder options) {
return sendAsync(s, delay, options.build());
}
/** <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(Function)}, with delay and options. */
@org.jetbrains.annotations.ApiStatus.Experimental
<O> CompletableFuture<SendResponse<O>> sendAsync(
Function<SVC, O> s, Duration delay, InvocationOptions invocationOptions);
// sendAsync - Consumer variants
/**
* <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(BiFunction, Object)}, for no-input/void
* methods.
*/
@org.jetbrains.annotations.ApiStatus.Experimental
default CompletableFuture<SendResponse<Void>> sendAsync(Consumer<SVC> s) {
return sendAsync(s, InvocationOptions.DEFAULT);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(Consumer)}, with options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default CompletableFuture<SendResponse<Void>> sendAsync(
Consumer<SVC> s, InvocationOptions.Builder options) {
return sendAsync(s, options.build());
}
/** <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(Consumer)}, with options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default CompletableFuture<SendResponse<Void>> sendAsync(
Consumer<SVC> s, InvocationOptions invocationOptions) {
return sendAsync(s, null, invocationOptions);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(Consumer)}, with a delay. */
@org.jetbrains.annotations.ApiStatus.Experimental
default CompletableFuture<SendResponse<Void>> sendAsync(Consumer<SVC> s, Duration delay) {
return sendAsync(s, delay, InvocationOptions.DEFAULT);
}
/** <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(Consumer)}, with delay and options. */
@org.jetbrains.annotations.ApiStatus.Experimental
default CompletableFuture<SendResponse<Void>> sendAsync(
Consumer<SVC> s, Duration delay, InvocationOptions.Builder options) {
return sendAsync(s, delay, options.build());
}
/** <b>EXPERIMENTAL API:</b> Like {@link #sendAsync(Consumer)}, with delay and options. */
@org.jetbrains.annotations.ApiStatus.Experimental
CompletableFuture<SendResponse<Void>> sendAsync(
Consumer<SVC> s, Duration delay, InvocationOptions invocationOptions);
}