com.imageworks.migration

With

object With

Utility object that contains functions that ensure a resource is released once it has been used. Each function takes resource object that has a method to release the resource, such as close(), and a closure to that operates on the resource. After the closure has completed, either normally via a return or by throwing an exception, the resource is released.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. With
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. def connection[R](c: Connection)(f: (Connection) ⇒ R): R

    Take a SQL connection, pass it to a closure and ensure that the connection is closed after the closure returns, either normally or by an exception.

    Take a SQL connection, pass it to a closure and ensure that the connection is closed after the closure returns, either normally or by an exception. If the closure returns normally, return its result.

    c

    a SQL connection

    f

    a Function1[Connection,R] that operates on the connection

    returns

    the result of f

  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  12. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  18. def resultSet[R](rs: ResultSet)(f: (ResultSet) ⇒ R): R

    Take a SQL result set, pass it to a closure and ensure that the result set is closed after the closure returns, either normally or by an exception.

    Take a SQL result set, pass it to a closure and ensure that the result set is closed after the closure returns, either normally or by an exception. If the closure returns normally, return its result.

    rs

    a SQL result set

    f

    a Function1[ResultSet,R] that operates on the result set

    returns

    the result of f

  19. def statement[S <: Statement, R](s: S)(f: (S) ⇒ R): R

    Take a SQL statement, pass it to a closure and ensure that the statement is closed after the closure returns, either normally or by an exception.

    Take a SQL statement, pass it to a closure and ensure that the statement is closed after the closure returns, either normally or by an exception. If the closure returns normally, return its result.

    s

    a SQL statement

    f

    a Function1[Statement,R] that operates on the statement

    returns

    the result of f

  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  21. def toString(): String

    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  23. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  24. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any

Ungrouped