e2
In which way we could provide asynch support:
- java nio? http://twit88.com/blog/2007/10/02/develop-a-java-file-watcher/
- some stuff from inet
http://stackoverflow.com/questions/612656/searching-for-generic-asynchronous-java-job-execution-framework-library
-
http://cupi2.uniandes.edu.co/~cupi2/sitio/images/recursos/javadoc/j2se/1.5.0/docs/api/java/util/concurrent/package-summary.html
http://code.google.com/p/java-signal-framework/
http://www.slideshare.net/AuroraSoftworks/signal-framework
Just to share this concept:
private static ThreadLocal<ModelResolver> threadInstance = new ThreadLocal<ModelResolver>();
public static void setThreadInstance(final ModelResolver instance) {
threadInstance.set(instance);
}
Oh, forgot description. It allows to have one static instance per thread for multithreaded environments (results of evolution of static instances concept).