com.ideaaedi.commonds.function.NoArgConsumer Maven / Gradle / Ivy
The newest version!
package com.ideaaedi.commonds.function;
/**
* 无参 Consumer
*
* @author JustryDeng
* @since 2022/4/19 11:17
*/
@FunctionalInterface
public interface NoArgConsumer {
/**
* 执行逻辑
*/
void accept();
}