Douman
Douman
`Future` can represent only one shot timer. But well for sub-set of problems it can be used too I guess
More optimal approach would be to use first call with some stack array of hard-coded size. If function fails with unsufficient memory, then it will update len to required one,...
Wouldn't simply opening File with write access to ensure that no other process could access it? (at least on Windows I think it would give you some guarantees)
Sadly i'm not expert in regard of Linux, but at least there is some capabilities to set lock through (fcntl)[http://man7.org/linux/man-pages/man2/fcntl.2.html] So i suppose it all comes to OS capabilities. `fcntl`...
As far as i remember browsers might register HTML as format to clipboard.
If anyone will find it interesting: On windows i cam up with simple workaround for console applications to get notified on clipboard change events properly https://github.com/DoumanAsh/clipboard-master Basic sequence of actions:...
@aweinstock314 By `Receiver` do you mean it is going to be channel's end? It might be fine API but it would imply that thread will be started implicitly to wait...
>I don't really get the shutdown method for a system, since its stateless, however, for example when a state is destroyed, it should clean up its resources. I think it...
@Rhuagh Does `amethyst::Trans::Quit` triggers `on_stop` for all `State` in stack?
Hmm, this is certainly on option instead of making global shutdown. Though I feel like it is not the best option for something global, but as currently there is always...