I want to intercept in my java application print jobs sending from other applications. I didn't find any standard API for it, but find workaround here. It is a monitoring of windows spooler folder, where it put files related with print job. These files are deleted once job complete. There are registry keys in Windows, which named HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Print\Printers\\startTime and HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Print\Printers\\DsSpooler\printStartTime. I supposed it's time before printing request is sent. Default value for some printers is 60 and files a deleted in less than second. It is not milliseconds, because for 1000 value, files are not deleted from spooler folder at all. I didn't found any information about meaning this key and its value.
I will very appreciated for any guidance.