Get the last known result of the given DaemonEntry's processing
*/
public int getResult(DaemonEntry entry) {
try {
Daemon daemon = this.getDaemon(entry);
return daemon.getResult();
} catch (DaemonException e) {
Log.error(e);
return Daemon.RESULT_UNKNOWN;
}