This is an automated email from the ASF dual-hosted git repository. toulmean pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/incubator-tuweni.git
from 96794d499 Merge pull request #543 from apache/jsonrpc_ethgetBlockByNumber add d188b3f61 Add new module, JSON-RPC downloader new 0852e0b01 Merge pull request #544 from apache/add_jsonrpc_downloader The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: jsonrpc-downloader/README.md | 20 +++ jsonrpc-downloader/build.gradle | 52 ++++++ .../tuweni/jsonrpc/downloader/DownloadState.kt | 19 +++ .../apache/tuweni/jsonrpc/downloader/Downloader.kt | 187 +++++++++++++++++++++ .../tuweni/jsonrpc/downloader/DownloaderConfig.kt | 49 ++++++ .../tuweni/jsonrpc/downloader/DownloaderTest.kt | 58 +++++++ settings.gradle | 1 + 7 files changed, 386 insertions(+) create mode 100644 jsonrpc-downloader/README.md create mode 100644 jsonrpc-downloader/build.gradle create mode 100644 jsonrpc-downloader/src/main/kotlin/org/apache/tuweni/jsonrpc/downloader/DownloadState.kt create mode 100644 jsonrpc-downloader/src/main/kotlin/org/apache/tuweni/jsonrpc/downloader/Downloader.kt create mode 100644 jsonrpc-downloader/src/main/kotlin/org/apache/tuweni/jsonrpc/downloader/DownloaderConfig.kt create mode 100644 jsonrpc-downloader/src/test/kotlin/org/apache/tuweni/jsonrpc/downloader/DownloaderTest.kt --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@tuweni.apache.org For additional commands, e-mail: commits-h...@tuweni.apache.org