-
-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reconsider awaiting on sleep on pressKey/releaseKey when autoDelayMs == 0 #409
Comments
This issue is stale because it has been open for 30 days with no activity. |
This issue was closed because it has been inactive for 14 days since being marked as stale. |
s1hofmann
added a commit
that referenced
this issue
Sep 30, 2022
s1hofmann
added a commit
that referenced
this issue
Sep 30, 2022
@s1hofmann is this being prioritized? Just curious |
@himat It's not my top priority at the moment. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Short overview
When calling
pressKey
/releaseKey
, thesleep
function is awaited no matter the delay set inautoDelayMs
. However, due to the waysleep
is implemented, using asetTimeout
, a non-negligible delay is introduced nonetheless, and there are no guarantees on its upper bound.Therefore, I propose that a special case is added to handle a delay of 0, so that applications that require low latency can run as fast as possible.
Use case
The text was updated successfully, but these errors were encountered: