@Immutable public final class RetryWire extends Object implements Wire
This wire retries again (at least three times) if an original one throws
IOException:
String html = new JdkRequest("http://goggle.com")
.through(RetryWire.class)
.header(HttpHeaders.ACCEPT, MediaType.TEXT_PLAIN)
.fetch()
.body();
The class is immutable and thread-safe.
| Modifier and Type | Method and Description |
|---|---|
Response |
send(Request req,
String home,
String method,
Collection<Map.Entry<String,String>> headers,
InputStream content)
Send request and return response.
|
@RetryOnFailure(attempts=5, delay=1L, unit=SECONDS, verbose=false) public Response send(Request req, String home, String method, Collection<Map.Entry<String,String>> headers, InputStream content) throws IOException
send in interface Wirereq - Requesthome - URI to fetchmethod - HTTP methodheaders - Headerscontent - HTTP bodyIOException - if failsCopyright © 2012–2014 jcabi.com. All rights reserved.