com.stratio.datasource

util

package util

Visibility
  1. Public
  2. All

Value Members

  1. object using

    DSL helper for enclosing some functionality into a closeable type.

    DSL helper for enclosing some functionality into a closeable type. Helper will be responsible of closing the object. i.e.:

    import java.io._
    val writer = new PrintWriter(new File("test.txt" ))
    using(writer){ w =>
     w.append("hi!")
    }

Ungrouped