Samir Halilčević
Samir Halilčević
Hello, could you elaborate a bit more about this task? If I get it correctly, one simpler implementation should take care of bit packing. Should it cover all bit widths...
I have the same issue, using clang-9 on Manjaro Linux. After some playing around, I made it compile. There are two issues with this, that are easy to fix. When...
The timer currently holds a vector of ```OnceJob``` and ```RepeatJob```. We could refactor the scheduler to hold vector of ```FnOnce``` and ```FnMut```, that is a struct holding their boxed version...
The receiver being one shot could actually be a benefit. Keep simple things simple, at least for now. How about implementing `Drop` for `ActorSystem` so that it awaits the full...
Hi @ChenKang256. I've tested the provided program on my machine (notebook - Intel i5 8. gen with 16GB of RAM). I couldn't quite reproduce the result, and I'm using the...
Hi @alatdneg. Thanks for providing test code at your personal branch. The unexpected message log line you saw is common behavior in case of receiving something you don't have a...
> Ah ta, I see, yeah that'd probably work, as my atoms are used external of Qt as well as in it, i'd have to apply the same default offset....
@Neverlord You mentioned I should take a look at this, but it seems we ditched the broker examples in favor of `caf::net` last year ([commit](https://github.com/actor-framework/actor-framework/commit/d3769f0cbbd3487d4d95b9ee6d5b6a7c8cb3fc2a)). Should I fish this out,...
> We'll have to copy the thing into a new version namespace... Somebody stop this man. To be honest, before reading this I thought the only way to achieve stable...
Committing to the `SameMajorVersion` without introducing the full namespace mangling will take a lot of the initial load from us. Like you said, we can use the time to explore...