McDelegate.java 295 B

123456789101112131415161718
  1. package com.malk.delegate;
  2. import org.springframework.scheduling.annotation.Async;
  3. public interface McDelegate {
  4. /**
  5. * 异步线程回调
  6. */
  7. @Async
  8. void setTimeout(Invoke fn, long millis);
  9. @FunctionalInterface
  10. interface Invoke {
  11. void execute();
  12. }
  13. }