All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.micromanager.acqj.api.AcquisitionHook Maven / Gradle / Ivy

There is a newer version: 0.38.1
Show newest version
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