I'm trying to get the name of the file that Zend\Cache\Pattern\CaptureCache is writing to disk. I know that it is not actually this object that writes the file (I think it is Zend\Cache\Storage\Adapter) but I don't know how (or when) to access the file name.
I've been going over all the events triggered by the Zend\Cache\Storage\Adapter\FileSystem and Zend\Cache\Storage\Adapter\AbstractAdapters to see if I could catch the object right after it stores the file to disk but can't seem to find it. I'm currently taking the Zend Online training and learning all about events that's why I'm looking here but I may be wrong. The reason I need to get the newly generated cache filename is because as they are generated I push them to a message queue and they eventually get send to the CDN by another process. Any help will be greatly appreciated! Julian.