-
Notifications
You must be signed in to change notification settings - Fork 311
Expand file tree
/
Copy pathVertxExample.java
More file actions
95 lines (85 loc) · 3.06 KB
/
Copy pathVertxExample.java
File metadata and controls
95 lines (85 loc) · 3.06 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
/*
* Copyright 2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License
*/
package dev.failsafe.examples;
import io.vertx.core.Vertx;
import io.vertx.core.eventbus.Message;
import io.vertx.core.eventbus.ReplyException;
import io.vertx.core.eventbus.ReplyFailure;
import dev.failsafe.Failsafe;
import dev.failsafe.RetryPolicy;
import dev.failsafe.spi.DefaultScheduledFuture;
import dev.failsafe.spi.Scheduler;
import java.time.Duration;
import java.util.concurrent.atomic.AtomicInteger;
public class VertxExample {
static Vertx vertx = Vertx.vertx();
/** Create RetryPolicy to handle Vert.x failures */
static RetryPolicy<Message<?>> retryPolicy = RetryPolicy.<Message<?>>builder()
.handleIf((ReplyException failure) -> ReplyFailure.RECIPIENT_FAILURE.equals(failure.failureType())
|| ReplyFailure.TIMEOUT.equals(failure.failureType()))
.withDelay(Duration.ofSeconds(1))
.onRetry(e -> System.out.println("Received failed reply. Retrying."))
.onSuccess(e -> System.out.println("Received reply " + e.getResult().body()))
.onFailure(e -> System.out.println("Execution and retries failed"))
.build();
/** Adapt Vert.x timer to a Failsafe Scheduler */
static Scheduler scheduler = (callable, delay, unit) -> {
Runnable runnable = () -> {
try {
callable.call();
} catch (Exception ignore) {
}
};
return new DefaultScheduledFuture<Object>() {
long timerId;
{
if (delay == 0)
vertx.getOrCreateContext().runOnContext(e -> runnable.run());
else
timerId = vertx.setTimer(unit.toMillis(delay), tid -> runnable.run());
}
@Override
public boolean cancel(boolean mayInterruptIfRunning) {
return delay != 0 && vertx.cancelTimer(timerId);
}
};
};
/**
* A Vert.x sender and retryable receiver example.
*/
public static void main(String... args) throws Throwable {
// Receiver that fails 2 times then succeeds
AtomicInteger failures = new AtomicInteger();
vertx.eventBus().consumer("ping-address", message -> {
if (failures.getAndIncrement() < 2)
message.fail(1, "Failed");
else {
message.reply("pong!");
}
});
// Retryable sender
Failsafe.with(retryPolicy)
.with(scheduler)
.getAsyncExecution(execution -> vertx.eventBus().send("ping-address", "ping!", reply -> {
if (reply.succeeded())
execution.recordResult(reply.result());
else
execution.recordFailure(reply.cause());
}));
Thread.sleep(5000);
System.exit(0);
}
}