- 2022-02-12: Limiting factor in playing an arcade style space shooter via sensors and a hooked up keyboard.
- 2022-02-05: Does the time taken to count integers (that are less than a threshold) in an unordered array, remain the same, or vary?
- 2022-01-29: Does splitting a service into microservices help or hurt the availability?
- 2022-01-22: Can closures+lambdas be implemented irrespective of whether the language is garbage collected?
- 2022-01-15: Debugger crashed before a breakpoint was hit. What happens to the program being debugged?
- 2022-01-08: No puzzle on account of my travels
- 2022-01-01: Relative CPU performance of a process b/w native vs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ########################################################### | |
// | |
// Demonstrates how to supervise an Akka consumer actor. | |
// | |
// The consumer consumes messages from a file endpoint: | |
// - successful message processing by the consumer will | |
// positively acknowledge the message receipt, causing | |
// the file endpoint to delete the file. | |
// - an exception during message processing will cause a | |
// supervisor to restart the consumer. Before restart, |