org.micromanager.acqj.api.AcquisitionHook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AcqEngJ Show documentation
Show all versions of AcqEngJ Show documentation
Java-based Acquisition engine for Micro-Manager
package org.micromanager.acqj.api;
import org.micromanager.acqj.main.AcquisitionEvent;
/**
*
* @author henrypinkard
*/
public interface AcquisitionHook {
/**
* Called for before/after hardware acquisition hooks
*
* @param event
* @return the same event if you don't want to modfify anything, otherwise null
* if you want to delete it
*/
public AcquisitionEvent run(AcquisitionEvent event);
/**
* Shut down and release all resources
*/
public void close();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy