non-blocking
Here are 178 public repositories matching this topic...
ByteBufferView is a Collection of UInt8 which "views" into a ByteBuffer. Right now, we basically only implement the subscript which vends individual bytes. That's good enough to implement Collection/Sequence (and a bunch of more specialised sub-protocols) but it's not very fast at all.
Especially methods like firstIndex(of:) or firstIndex(where:) will be very slow because it'l
-
Updated
Jun 6, 2020 - Go
-
Updated
Mar 26, 2020 - Swift
-
Updated
Apr 7, 2019 - Swift
Feature request
The asynchronous functionality of parallel-ssh is very much appreciated for management tasks. Thank you for this!
For the feature request:
It seems that the open_session() can keep worker allocated for much longer than expected in failure cases. Would it be reasonable to stretch the timeout option of wait_socket() to open_session() ?
-
Updated
Jun 3, 2020 - C#
Apologies for probably opening this issue in the wrong repo.
https://vertx.io/docs/vertx-pg-client/kotlin/#_handling_arrays
Shows this example query:
client.preparedQuery("SELECT address, (address).city FROM address_book WHERE id=\$$1", Tuple.of(3), { ar ->
....The \$$1 is not valid Postgres SQL and will throw an Exception. The Java version correctly uses $1.
-
Updated
May 24, 2018 - Swift
-
Updated
Mar 13, 2020 - JavaScript
-
Updated
May 24, 2020 - Go
-
Updated
Jan 2, 2018 - Swift
-
Updated
Jun 1, 2020 - Java
-
Updated
Jun 5, 2019 - Java
A faux pas on my part, but I have been using Vert.x with Kotlin Coroutines (
The documentation mentions that:
...Vert.x generates suspending extension methods for all its asynchronous metho
-
Updated
Apr 25, 2020 - Java
-
Updated
Dec 22, 2019 - C++
-
Updated
May 28, 2020 - Java
-
Updated
Apr 7, 2020 - Clojure
-
Updated
Jul 10, 2017 - Go
-
Updated
Oct 10, 2019 - JavaScript
-
Updated
Dec 26, 2019 - Lua
-
Updated
May 31, 2020 - Java
Improve this page
Add a description, image, and links to the non-blocking topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the non-blocking topic, visit your repo's landing page and select "manage topics."
The core documentation on how to make requests says to use xxxNow to make request from a client, but those methods are deprecated, e.g., getNow.