Interface InterruptHandler

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface InterruptHandler

Functional interface for an interrupt handler. An interrupt handler is called in its own thread any time SIGINT is receieved by the process.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
  • Method Details

    • handleInterrupt

      void handleInterrupt()