Resource

eu.joaocosta.minart.runtime.Resource
See theResource companion object
trait Resource

Resource that can be loaded.

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def path: String

Path to the resource

Path to the resource

Attributes

def unsafeInputStream(): InputStream

Loads the resource synchronously, and returns an java.io.InputStream. The InputStream is NOT closed in the end.

Loads the resource synchronously, and returns an java.io.InputStream. The InputStream is NOT closed in the end.

This method should only be used if for some reason the input stream must stay open (e.g. for data streaming)

Attributes

def unsafeOutputStream(): OutputStream

Loads the resource synchronously, and returns an java.io.OutputStream. The OutputStream is NOT closed in the end.

Loads the resource synchronously, and returns an java.io.OutputStream. The OutputStream is NOT closed in the end.

This method should only be used if for some reason the output stream must stay open (e.g. for data streaming)

Attributes

def withInputStreamAsync[A](f: InputStream => A): Future[A]

Loads the resource asynchronously, processes the contents using a java.io.InputStream and returns the result. The InputStream is closed in the end, so it should not escape this call.

Loads the resource asynchronously, processes the contents using a java.io.InputStream and returns the result. The InputStream is closed in the end, so it should not escape this call.

Attributes

def withSourceAsync[A](f: Source => A): Future[A]

Loads the resource asynchronously, processes the contents using a scala.io.Source and returns the result. The Source is closed in the end, so it should not escape this call. For working with binary files, it is recommended to use withInputStreamAsync instead.

Loads the resource asynchronously, processes the contents using a scala.io.Source and returns the result. The Source is closed in the end, so it should not escape this call. For working with binary files, it is recommended to use withInputStreamAsync instead.

Attributes

Concrete methods

def exists(): Boolean

Checks if the resource exists

Checks if the resource exists

Attributes

def withInputStream[A](f: InputStream => A): Try[A]

Loads the resource synchronously, processes the contents using a java.io.InputStream and returns the result. The InputStream is closed in the end, so it should not escape this call.

Loads the resource synchronously, processes the contents using a java.io.InputStream and returns the result. The InputStream is closed in the end, so it should not escape this call.

Attributes

def withOutputStream[A](f: OutputStream => A): Try[A]

Provides a java.io.OutputStream to write data to this resource location. The OutputStream is closed in the end, so it should not escape this call.

Provides a java.io.OutputStream to write data to this resource location. The OutputStream is closed in the end, so it should not escape this call.

Attributes

def withSource[A](f: Source => A): Try[A]

Loads the resource synchronously, processes the contents using a scala.io.Source and returns the result. The Source is closed in the end, so it should not escape this call. For working with binary files, it is recommended to use withInputStream instead.

Loads the resource synchronously, processes the contents using a scala.io.Source and returns the result. The Source is closed in the end, so it should not escape this call. For working with binary files, it is recommended to use withInputStream instead.

Attributes