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

scala.tools.nsc.CloseableRegistry.scala Maven / Gradle / Ivy

The newest version!
/*
 * Scala (https://www.scala-lang.org)
 *
 * Copyright EPFL and Lightbend, Inc.
 *
 * Licensed under Apache License 2.0
 * (http://www.apache.org/licenses/LICENSE-2.0).
 *
 * See the NOTICE file distributed with this work for
 * additional information regarding copyright ownership.
 */

package scala.tools.nsc

import java.io.Closeable

import scala.util.control.NonFatal

/** Registry for resources to close when `Global` is closed */
final class CloseableRegistry extends Closeable {
  private[this] var closeables: List[Closeable] = Nil
  final def registerCloseable(c: Closeable): Unit = {
    closeables ::= c
  }

  def close(): Unit = {
    for (c <- closeables) {
      try {
        c.close()
      } catch {
        case NonFatal(_) =>
      }
    }
    closeables = Nil
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy