David Jirovec

Results 18 comments of David Jirovec

Bitfinex does not mention any way to handle missing numbers in sequence. Actually they mention just flag that turns sequences on and information that it is beta feature :) I...

Sure, thanks. Any ideas can help. Well, this is core of my test case: https://github.com/bitrich-info/xchange-stream/compare/develop...davidjirovec:sequencing-test#diff-24429d40711776b7bfbbf1d0a497fd6eR344 Just checking the sequences on NettyStreamingService level, so thread unsafe Orderbook should not be the...

Oh, sorry, my bad. Message was not lost. It was `hb` message, which was consumed by `NettyStreamingService`'s child - `BitfinexStreamingService`. It seems `handleMessage` should not be called concurrently https://github.com/netty/netty/wiki/New-and-noteworthy-in-4.0#well-defined-thread-model so...

As I've mentioned in #269, I've already had the checksums implemented, but it was very ugly and slow. But after this issue, I've done a few improvements so it is...

It would be useful to limit the initial snapshot from rest api. When you subscribe to many orderbooks, you'll hit rest api rate limit. Smaller orderbook snapshots allow you to...

I had same problem, I've solved it using AspectJ ``` import com.google.common.util.concurrent.RateLimiter; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Aspect; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @Aspect public class ApiRateLimitAspect { private static final...

Sound reasonable, are there any benefits to just calling ```io.reactivex.Observable#toFlowable```?

So funny to see bitcoin value at ~10k when now its ~4k, I wonder what reading THIS comment will result in the future

No, but I am not sure if it has something to do with used OS. I am running on Ubuntu on Windows 10. Anyway, it happened again. ``` Blackbird Bitcoin...

From my two logs, it seems problem is caused when QuadrigaCX is used as Exchange Long? I am really not a C developer, so I what is meaningful way to...