All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.supersonic.util.SignalingUtil.scala Maven / Gradle / Ivy

The newest version!
package com.supersonic.util

import sun.misc.Signal

object SignalingUtil {
  def registerHandler(block: => Unit): Unit = {
    val _ = Signal.handle(new Signal("INT"), _ => block)
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy