Eyal Niv
Eyal Niv
That's good to know. Looks like the underlying `TcpConnectionImpl::queueInLoop` method will enqueue the formatted message until it is sent out. Does this queue have a capacity limit? The reason it...
Thank you both. In my application, I am streaming data from a server connected to some hardware in chunks of ~64KB and as fast as the client can consume. Correct...
Let me try to rephrase: how do I know if a call to `WebSocketConnectionPtr::send` actually sent the data or not?
Thanks for your comments Linus! For your first comment, is it challenging to auto scroll to the bottom (for the output terminal)?
Yes, I actually found out that you have a `scrollToBottom` method which I can call on the reference. So I'm using the command callbacks of the bottom, one line, input...
Great. I updated and can confirm that this fixed the issue. Thank you very much!
Hi Ivan, I'm opening this again because I realized that the following code section (in CppCommon `include/system/stack_trace_inl` and `include/system source_location.inl`): ``` #if defined(FMT_VERSION) template struct fmt::formatter : ostream_formatter {}; #endif...
For reference, I ran into this only because FMT updated their master branch which broke a header only library I'm using (spdlog) that includes FMT as well. I didn't realize...
I am not using the new feature for custom registers, but I think it would make sense to allow run time configuration there as well.
Hi, I'm interested in something like that as well and was thinking to build on libusb. @carlosvalderrama, did you end up implementing something and have suggestions/tips ?