Interface Runner
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Runner
is the interface that runs any procedure.-
Method Summary
-
Method Details
-
run
void run() throws com.github.sttk.errs.ExcRuns the procedure that this instance represents. This method takes no argument and returns nothing. And this method throws anExc
exception if this method failed.- Throws:
com.github.sttk.errs.Exc
- If this method failed.
-