f1reflyylmao has quit [Remote host closed the connection]
f1refly has joined #crystal-lang
yukai has quit [Ping timeout: 258 seconds]
ryanprior has quit [Quit: killed]
psydroid has quit [Quit: killed]
return0e[m] has quit [Quit: killed]
_whitelogger has joined #crystal-lang
ryanprior has joined #crystal-lang
psydroid has joined #crystal-lang
return0e[m] has joined #crystal-lang
johnny101 has quit [Ping timeout: 258 seconds]
f1refly has quit [Quit: bye fags]
f1refly has joined #crystal-lang
johnny101 has joined #crystal-lang
kevinsjoberg_ has joined #crystal-lang
daemonwrangler has quit [Ping timeout: 246 seconds]
kevinsjoberg has quit [*.net *.split]
kevinsjoberg_ is now known as kevinsjoberg
daemonwrangler has joined #crystal-lang
renich has joined #crystal-lang
yxhuvud has quit [Remote host closed the connection]
yxhuvud has joined #crystal-lang
ua_ has quit [Ping timeout: 240 seconds]
ua_ has joined #crystal-lang
dostoyevsky has quit [Ping timeout: 240 seconds]
dostoyevsky has joined #crystal-lang
Flipez1 has joined #crystal-lang
ua_ has quit [*.net *.split]
Flipez has quit [*.net *.split]
andremedeiros has quit [*.net *.split]
Flipez1 is now known as Flipez
andremedeiros has joined #crystal-lang
ua_ has joined #crystal-lang
<FromGitter>
<aaaScript> Would anyone have any insight on the best way to monitor for a continuous API call in the background in the background (sending requests, getting results in a channel) in a throttled but non-blocking manner? ⏎ ⏎ For some context, I have a crystal-imgui application that's continuously updating/drawing information based on information it receives from an API server. Since everything is happening in a loop,
<FromGitter>
... it can't really hold up anything with an API call (timeouts, etc) since that will lag the GUI, I also don't mind if calls are skipped or delayed by a second or more since the client will just update information with an old entry (that's like a second behind). I also want to see if there's a way to throttle the calls, instead ... [https://gitter.im/crystal-lang/crystal?at=5f93576757fe0a4f302d1ff2]
<oprypin_>
aaaScript, well yea, send requests and get results in a channel, what's the problem? :D
oprypin_ is now known as oprypin
<FromGitter>
<aaaScript> Hmmm I'll play with it some more a bit, just seem to be having general difficulties lol