nim-chronos icon indicating copy to clipboard operation
nim-chronos copied to clipboard

Chronos - An efficient library for asynchronous programming

Results 84 nim-chronos issues
Sort by recently updated
recently updated
newest added

Hi, please forgive me if i misunderstood something really basic that makes this issue; i am trying to do a simple get request and the application is crashing ``` proc...

cpp-backend

zerossl provides files like this: ``` -----BEGIN RSA PRIVATE KEY----- [the private key] -----END RSA PRIVATE KEY----- ``` But at parsing, we only support `BEGIN PRIVATE KEY`: https://github.com/status-im/nim-chronos/blob/9df76c39df254c7ff0cec6dec5c9f345f2819c91/chronos/streams/tlsstream.nim#L698

enhancement

https://github.com/status-im/nimbus-eth2/issues/4661 ``` nimbus-eth2/vendor/nim-chronos/chronos/asyncfutures2.nim(389, 3) Warning: catch a more precise Exception deriving from CatchableError or Defect. [BareExcept] ``` https://github.com/status-im/nim-chronos/blob/f7835a192b45c37e97614d865141f21eea8c156e/chronos/asyncfutures2.nim#L389-L393

These are useful alternatives to the `race` helper that make it easy to implement "first successful response" strategies. Currently, the Nimbus VC is trying to implement such a strategy, but...

Pretty much all composite futures in Chronos do not propagate cancellations. For example, here is what the documentation is saying about `allFutures`: ``` ## Returns a future which will complete...

When a thread finishes, there is currently no way to release the resources of the dispatcher. Which on linux, include a FD & relatively big buffer for `epoll` We could...

…egistration key after AsyncEventQueueFullError With _EventBus_ being deprecated I am checking how to move exiting code to _AsyncEventQueue_ and was wondering if the addition of `resetRegistration()` (tentative proc name) would...

First draft for what I learned with chronos in multithreading so far and how that could be turned into docs as discussed in #542 . If you had a different...