Anton Sozontov

Results 5 comments of Anton Sozontov

@ioquatix yeah, That's what I was thinking, too. I believe it's better to make a separate gem. I put pretty much everything inside the Command to minimise impact to the...

@sergio-fry I guess this is no longer relevant but let me just leave it here. https://github.com/socketry/timers ``` require 'timers' timers = Timers::Group.new five_second_timer = timers.after(5) { puts "Take five" }...

Hey @mrhardikjoshi, Pretty much everything related to async ecosystem should be run inside a reactor. You can check how it works in falcon server, ex. https://github.com/socketry/falcon/blob/main/lib/falcon/command/supervisor.rb#L81 ``` Async do endpoint.connect...

Hi @ioquatix I've implemented a separate gem - https://github.com/webgago/async-runner Do you think it's worth moving it to socketry organisation?