slick

util

package util

Helper code for various things. Tuples, Logging, SQL, ...

Source
package.scala
Linear Supertypes
AnyRef, Any
Content Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. util
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. trait AsyncExecutor extends Closeable

    A connection pool for asynchronous execution of blocking I/O actions.

    A connection pool for asynchronous execution of blocking I/O actions. This is used for the asynchronous query execution API on top of blocking back-ends like JDBC.

  2. trait CloseableIterator[+T] extends Iterator[T] with Closeable

    An Iterator with a close method to close the underlying data source.

    An Iterator with a close method to close the underlying data source. Implementers must close the data source when hasNext returns false.

  3. final class ConfigExtensionMethods extends AnyVal

    Extension methods to make Typesafe Config easier to use

  4. final class ConstArray[+T] extends Product

    An efficient immutable array implementation which is used in the AST.

    An efficient immutable array implementation which is used in the AST. Semantics are generally the same as for Scala collections but for performance reasons it does not implement any standard collection traits.

  5. final class ConstArrayBuilder[T] extends AnyRef

    A mutable builder for ConstArrays.

  6. trait ConstArrayOp[+T] extends Any

    A lazy operation on a ConstArray, produced by withFilter, zip, zipWithIndex and ConstArrayOp.from(Range).

  7. case class DumpInfo(name: String, mainInfo: String = "", attrInfo: String = "", children: Iterable[(String, Dumpable)] = Vector.empty) extends Product with Serializable

    The information required for dumping a single object

  8. trait Dumpable extends AnyRef

    Interface for types that can be used in a tree dump

  9. trait Logging extends AnyRef

  10. class MacroSupportInterpolation extends AnyRef

  11. abstract class ManagedArrayBlockingQueue[E >: Null <: AnyRef] extends AbstractQueue[E] with BlockingQueue[E]

    A simplified copy of java.util.concurrent.ArrayBlockingQueue with additional logic for temporarily rejecting elements based on the current size.

    A simplified copy of java.util.concurrent.ArrayBlockingQueue with additional logic for temporarily rejecting elements based on the current size. All features of the original ArrayBlockingQueue have been ported, except the mutation methods of the iterator. See java.util.concurrent.ArrayBlockingQueue for documentation.

  12. final class ProductWrapper extends Product

    A Product to represent larger arities than Tuple22

  13. final class RangeConstArrayOp extends ConstArrayOp[Int]

  14. trait ReadAheadIterator[+T] extends BufferedIterator[T]

    An iterator on top of a data source which does not offer a hasNext() method without doing a next()

  15. final case class RefId[E <: AnyRef](e: E) extends Product with Serializable

    A wrapper for a value, which uses reference equality of the wrapped value as its own equality.

    A wrapper for a value, which uses reference equality of the wrapped value as its own equality. This can be used, for example, to get the equivalent of an IdentityHashMap from a regular HashMap.

  16. final class SQLBuilder extends AnyRef

  17. final class SlickLogger extends AnyRef

  18. class TableDump extends AnyRef

    Utility methods for creating result set debug output.

  19. case class TreePrinter(name: String = "", prefix: String = "", firstPrefix: String = null, narrow: (Dumpable) ⇒ Dumpable = identity, mark: (Dumpable) ⇒ Boolean = _ => false) extends Product with Serializable

    Create a readable printout of a tree.

Value Members

  1. def ??: Nothing

    Throw an UnsupportedOperationException.

    Throw an UnsupportedOperationException. Like ??? but NonFatal.

  2. object AsyncExecutor extends Logging

  3. object BeanConfigurator extends Logging

    Configure Java Beans reflectively, using Typesafe Config for data type conversions.

  4. object ClassLoaderUtil

    Utilities for working with classloaders

  5. object CloseableIterator

  6. object ConfigExtensionMethods

  7. object ConstArray

  8. object ConstArrayOp

  9. object DumpInfo extends Serializable

  10. object Ellipsis

    Create a wrapper for a Dumpable to omit some nodes.

  11. object GlobalConfig

    Singleton object with Slick's configuration, loaded from the application config.

    Singleton object with Slick's configuration, loaded from the application config. This includes configuration for the global driver objects and settings for debug logging.

    In addition to being listed in reference.conf, all essential config options also have their default values hardcoded here because we cannot rely on getting reference.conf on the classpath in all cases (e.g. the tsql macro).

  12. object MacroSupport

  13. object SQLBuilder

  14. object SlickLogger

  15. object TreePrinter extends Serializable

  16. object TupleMethods

    Extension methods for prepending and appending values to tuples

  17. object TupleSupport

    Utility functions for working with tuples of different arities

  18. val ignoreFollowOnError: PartialFunction[Throwable, Unit]

    An exception handler which ignores NonFatal exceptions.

    An exception handler which ignores NonFatal exceptions. It is used when running cleanup code inside of another exception handler to prevent an exception during cleanup from overriding the original one.

Inherited from AnyRef

Inherited from Any

Ungrouped