host.anzo.commons.datetime.dailytick.IDailyTickable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-core Show documentation
Show all versions of commons-core Show documentation
Commons library to make me happy.
package host.anzo.commons.datetime.dailytick;
import java.time.DayOfWeek;
/**
* @author ANZO
*/
public interface IDailyTickable {
void onDailyTick(DayOfWeek dayOfWeek, EDailyTickType dailyTickType);
}