What is the Java 8 functional interface for a method that takes nothing and returns nothing?
I.e., the equivalent to to the C# parameterless Action wit
Action
If I understand correctly you want a functional interface with a method void m(). In which case you can simply use a Runnable.
void m()