Tag Archives: real-time Java

Sub-millisecond Java

Imagine you had to implement (complex) code in Java that runs in sub-millisecond time. How will you know that you’ve succeeded? The traditional measurement such as this one won’t work. long before = System.currentTimeMillis(); doSomeWork(); long elapsed = System.currentTimeMillis() – … Continue reading

Posted in Jan's Blog | Tagged , , , | Leave a comment