This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Ludovic Valente", | |
"image": "https://www.libravatar.org/avatar/0c1ddc83408f6f3966e7999083692f6d42832e1054640f4cc0a6e45aa2bc6779?d=retro&s=80", | |
"email": "[email protected]", | |
"phone": "", | |
"url": "https://scora.watch", | |
"location": { | |
"countryCode": "LU", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
write a client iterating on next page using a cursor, a value coming from the first response | |
Here's an example of a Java client that iterates through pages using a cursor-based pagination approach: | |
```java | |
import org.springframework.web.reactive.function.client.WebClient; | |
import reactor.core.publisher.Flux; | |
import reactor.core.publisher.Mono; | |
public class CursorPaginationClient { |
OlderNewer