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

com.storedobject.core.Action Maven / Gradle / Ivy

package com.storedobject.core;

@FunctionalInterface
public interface Action extends Runnable {
	
	void act();
	
	default void run() {
		act();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy