Explore >> Select a destination


You are here

www.observeinc.com
| | www.bobdc.com
17.4 parsecs away

Travel
| | A pure, standards-compliant SPARQL query.
| | golb.hplar.ch
18.7 parsecs away

Travel
| |
| | deniskyashif.com
18.3 parsecs away

Travel
| | In this article, we'll define a basic regular expression language using a context-free grammar and learn how to parse its strings in linear time using the recursive descent method.
| | www.craigpardey.com
79.9 parsecs away

Travel
| Spring 3.2 has some very nice features for scheduling tasks. The pure Java way of doing this looks something like private ScheduledExecutorService executor = Executors.newSingleThreadScheduledExecutor(); class ScheduledTask implements Runnable { @Override public void run() { System.out.println("Running scheduled task"); } } // Schedule a task every 5 seconds executor.scheduleAtFixedRate(new ScheduledTask(), 1, 5, TimeUnit.SECONDS); // If you don't do this then the JVM won't exit cleanly executor.shutdown(); But now, with the snazzy new Spring scheduling annotations, it can be as simple as this