All Projects → dispatch → Reboot

dispatch / Reboot

Licence: lgpl-3.0
Scala wrapper for the Java AsyncHttpClient.

Programming Languages

scala
5932 projects

Projects that are alternatives of or similar to Reboot

Saber
⚔️ Saber, PHP异步协程HTTP客户端 | PHP Coroutine HTTP client - Swoole Humanization Library
Stars: ✭ 866 (+98.17%)
Mutual labels:  async, http-client
Parallec
Fast Parallel Async HTTP/SSH/TCP/UDP/Ping Client Java Library. Aggregate 100,000 APIs & send anywhere in 20 lines of code. Ping/HTTP Calls 8000 servers in 12 seconds. (Akka) www.parallec.io
Stars: ✭ 777 (+77.8%)
Mutual labels:  async, http-client
Http Client
Async HTTP/1.1+2 client for PHP based on Amp.
Stars: ✭ 553 (+26.54%)
Mutual labels:  async, http-client
Http Kit
http-kit is a minimalist, event-driven, high-performance Clojure HTTP server/client library with WebSocket and asynchronous support
Stars: ✭ 2,234 (+411.21%)
Mutual labels:  async, http-client
Snug
Write reusable web API interactions
Stars: ✭ 108 (-75.29%)
Mutual labels:  async, http-client
Request.swift
A tiny HTTP client written in swift. URLSession alternative
Stars: ✭ 14 (-96.8%)
Mutual labels:  async, http-client
Swiftcoroutine
Swift coroutines for iOS, macOS and Linux.
Stars: ✭ 690 (+57.89%)
Mutual labels:  async, dispatch
Create Request
Apply interceptors to `fetch` and create a custom request function.
Stars: ✭ 34 (-92.22%)
Mutual labels:  async, http-client
Aiohttp
Asynchronous HTTP client/server framework for asyncio and Python
Stars: ✭ 11,972 (+2639.59%)
Mutual labels:  async, http-client
Punchclock
Make sure your asynchronous operations show up to work on time
Stars: ✭ 235 (-46.22%)
Mutual labels:  async, http-client
Vue Skeleton Mvp
VueJs, Vuetify, Vue Router and Vuex skeleton MVP written on JavaScript using async/await built to work with API REST skeleton: https://github.com/davellanedam/node-express-mongodb-jwt-rest-api-skeleton
Stars: ✭ 406 (-7.09%)
Mutual labels:  async
Yii2 Httpclient
Yii 2 HTTP client
Stars: ✭ 406 (-7.09%)
Mutual labels:  http-client
Quill
Asynchronous Low Latency C++ Logging Library
Stars: ✭ 422 (-3.43%)
Mutual labels:  async
Telegram Bot
Ruby gem for building Telegram Bot with optional Rails integration
Stars: ✭ 433 (-0.92%)
Mutual labels:  async
Fuel
The easiest HTTP networking library for Kotlin/Android
Stars: ✭ 4,057 (+828.38%)
Mutual labels:  http-client
Ky Universal
Use Ky in both Node.js and browsers
Stars: ✭ 421 (-3.66%)
Mutual labels:  http-client
Kotlin Flow Extensions
Extensions to the Kotlin Flow library.
Stars: ✭ 404 (-7.55%)
Mutual labels:  async
Httplib2
Small, fast HTTP client library for Python. Features persistent connections, cache, and Google App Engine support. Originally written by Joe Gregorio, now supported by community.
Stars: ✭ 402 (-8.01%)
Mutual labels:  http-client
Dutier
The immutable, async and hybrid state management solution for Javascript applications.
Stars: ✭ 401 (-8.24%)
Mutual labels:  async
Kohttp
Kotlin DSL http client
Stars: ✭ 436 (-0.23%)
Mutual labels:  http-client

Dispatch Reboot

Build Status

Dispatch reboot is a rewrite of the Dispatch library for HTTP interaction in Scala, using async-http-client, commonly called AHC, as its underlying transport. For more info, see the Dispatch documentation site.

Dispatch requires that you use at least Java 8. Our test suite is also run against Java 11 in Travis.

Getting Dispatch

Stable releases of Dispatch are published to Maven Central. As such, you can pull in the current stable release by simply adding a library dependency to your project for the correct version.

To get the latest stable release, 1.2.0, simply add the following to your build.sbt:

libraryDependencies += "org.dispatchhttp" %% "dispatch-core" % "1.2.0"

If Gradle is more your style, you could also use this style:

implementation "org.dispatchhttp:dispatch-core_2.12:1.2.0"

Snapshot releases

We irregularly release snapshots to Sonatype snapshots. To use it you'll need to add the snapshots repository to your project and pull the relevant snapshot:

resolvers +=
  "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"

libraryDependencies += "org.dispatchhttp" %% "dispatch-core" % "1.3.0-SNAPSHOT"

Versioning and Support

Dispatch version numbers loosely follow SemVer. The version number format is:

[major].[minor].[patch]

A distinct (major, minor) combination is called a "release series" or "series" for our purposes.

Two stable series of Dispatch are supported at a time, with one series prior to that receiving "Critical" security updates in Dispatch itself or critical security fixes in AHC that have broken binary compatibility. All earlier versions of Dispatch are officially unsupported and will not receive any fixes or changes.

The next feature release development happens on master.

The following chart outlines what versions of Dispatch support what versions of AHC and Scala and their current support status:

Version AHC Version Scala Versions Support Branch
0.10.0 1.7.11 2.9.3,2.10 None
0.11.2 1.8.10 2.9.3,2.10,2.11 None
0.11.4 1.9.40 2.10,2.11 None
0.12.3 1.9.40 2.11,2.12 None
0.13.3 2.0.38 2.11,2.12 None
0.14.1 2.1.2 2.11,2.12 None
1.0.3 2.5.4 2.11,2.12 Critical only 1.0.x
1.1.3 2.10.4 2.12,2.13 Full support 1.1.x
1.2.0 2.10.4 2.12,2.13 Full support 1.2.x
1.3.0-SNAPSHOT 2.10.4 2.12,2.13 Development main

Because the AsyncHttpClient does not adhere to semantic versioning, and its versions can increment quite quickly at times, beginning with 0.14 Dispatch will only use the latest (major, minor) AHC version that's available at the time its being developed. You may not be able to find a Dispatch version for every version of AHC if AHC went through a quick release clip.

Upon request, we may release a patch version of Dispatch with a newer version of AHC if the new version is binary compatible with the version that series was originally released with.

Getting Help and Contributing

Please see our Contributing Guide for information on how to contribute and get help with Dispatch.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].