summaryrefslogtreecommitdiff
path: root/same/src/main/java/com/orbekk/util
AgeCommit message (Collapse)Author
2012-05-08Get rid of queues in Master.Kjetil Ørbekk
– Remove WorkQueue code. – Remove delayed operations in master. (Handled by RPC instead)
2012-05-02Fix VariableUpdaterTask.Kjetil Ørbekk
Use CyclicCountDownLatch to improve VariableUpdaterTask. This implementation is much better, but unfortunately really hard to test. I'm not sure how to test this.
2012-05-02Add CyclicCountDownLatch.Kjetil Ørbekk
(You may not want to use this.)
2012-05-01Add license header to all source files.Kjetil Ørbekk
2012-05-01Fix DelayedOperation.Kjetil Ørbekk
Use a CountDownLatch instead of manual synchronization.
2012-02-28Run SameService in a separate process.Kjetil Ørbekk
2012-02-27Remove argument to DelayedOperation.working-graphics-0.1Kjetil Ørbekk
2012-02-27Clean up source code.Kjetil Ørbekk
Clean up source code with Eclipse. In particular remove tabs.
2012-02-27Add DelayedOperation<T> class.Kjetil Ørbekk
A DelayedOperation represents an asynchronious operation.
2012-02-16Add manual performWork() in WorkQueue for testing.Kjetil Ørbekk
2012-01-31WorkList => WorkQueue – A worker thread helper class.Kjetil Ørbekk
2012-01-31Add WorkQueue.Kjetil Ørbekk
2012-01-30Add WorkList data structure.Kjetil Ørbekk
This class is used to hold commands for a worker thread.