The Wayback Machine - https://web.archive.org/web/20200304113138/https://github.com/topics/asynchronous
Skip to content
#

asynchronous

Here are 1,442 public repositories matching this topic...

dimaqq
dimaqq commented Jan 24, 2019

User guide advocates following to start a web server:

application = ...
application.listen(...)
IOLoop.current().start()

Now let's bring in some async library and use that to get application config:

config = IOLoop.current().run_sync(get_config_from_async_db)
application = SomeApp(config, ...)
application.listen(config["port"])
IOLoop.current().start()

Then

gralpli
gralpli commented Feb 12, 2020

Version

0.2.11

Description

The documentation for the tokio::process::Command::output() method states that: “If this future is dropped before the future resolves, then the child will be killed, if it was spawned.” This is only true if kill_on_drop(true) was called before.

The same might apply for the docs of the Command::status() method.

ktor
eMZet-zz
eMZet-zz commented Feb 6, 2020

Subsystem
Kotlin multiplatform library: ktor-client-logging:1.3.0

Is your feature request related to a problem? Please describe.
Problem: not able to filter calls to be logged. All calls are being logged by default.

Describe the solution you'd like
Add a filter option in Logging configuration block (this solution is available on Android in CallLogging feature, but it is absent

react-final-form
guyharris
guyharris commented Apr 5, 2019

Somebody reported a "failed to set hardware filter to promiscuous mode)" error; that comes from a PacketSetHwFilter() call, which ultimately does a DeviceIoControl() for NDIS adapters.

libpcap currently doesn't call GetLastError() and report the error code as part of the error if if PacketSetHwFilter() fails. That might provide more useful debugging information.

lettuce-core
elefeint
elefeint commented Feb 27, 2020

Expected Behavior

VirtualTimeScheduler runs scheduled tasks at certain intervals.

Actual Behavior

At version 3.3.3.RELEASE, VirtualTimeScheduler runs the task once and never again, even though virtual time elapsed.

Steps to Reproduce

With io.projectreactor:reactor-test:3.2.15.RELEASE, the following test passes. After updating to 3.3.3.RELEASE, it hangs.

@Test
p
rslindee
rslindee commented Jun 12, 2018

Is it possible to provide some descriptions in the documentation about some of the global variables (such as g:asyncrun_silent)? It looks like there are quite a few of said variables, and only two appear in the documentation.

Personally, I'm very interested in what variables are available and how they are intended to be used.

Improve this page

Add a description, image, and links to the asynchronous topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the asynchronous topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.