jjbridge.engine.utils.CleanUpAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jjbridge-engine-v8 Show documentation
Show all versions of jjbridge-engine-v8 Show documentation
A JJBridge library bundled with the V8 JavaScript Engine
package jjbridge.engine.utils;
/**
* An action to be performed before clean up.
* */
public interface CleanUpAction
{
/**
* Performs the clean up.
* */
void cleanUp();
}