Context

case
class Context[A](record: A, env: Env, fs: FileSystem)

The context is passed to some black-box function which is intended to compute a result

Type Params
A

the record (message) type

Value Params
env

a system environment

fs

a handle to a file system like thing

record

some message input

Companion
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def replaceEnv(newEnv: Map[String, String]): Context[A]
def withEnv(first: (String, String), theRest: (String, String)*): Context[A]
def withEnv(newEnv: Map[String, String]): Context[A]

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product