scala using
-
Scala Usingscala/basic 2022. 12. 19. 00:03
scala 2.13 버전부터 scala.util.Using 이 추가되었다. cats-effect 의 Resource 또는 zio 의 Scope 처럼 resource 관리를 위해 사용될 수 있다. AutoCloseable Resource 에서 사용 기본적으로 Using.resource(..) 혹은 Using.resources(..) 를 이용하자. (필요하면 Try 로 감싼다) https://www.scala-lang.org/api/2.13.6/scala/util/Using$$Releasable.html 을 보면 아래와 같은 내용이 있다. An instance of Releasable is needed in order to automatically manage a resource with Using. An ..