Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The SpringWorkManager is a Spring bean. By default when a Spring bean starts, the properties are set, and then the afterPropertiesSet() method is called by the container.

...

  1. The timerTask uses threads from the thread pool to periodically check the inbox directoroy directory for files.
  2. The workManager will also allocate a thread to process a file (read, normalize and send to NMR). The workManager calls a scheduleWork() method which is non-blocking. Therefore, if multiple files need to be processed, ilePoller can continue making requests to the workManager to schedule work.

...