BatchJobs (version 1.8)

makeJob: Creates a job description.

Description

Usually you will not do this manually. Every object is a list that contains the passed arguments of the constructor.

Usage

makeJob(id = NA_integer_, fun, fun.id = digest(fun), pars, name, seed)

Arguments

id

[integer(1)] Job id, determined by DB autoincrement. Default is NA.

fun

[function] Job function to apply on parameters.

fun.id

[character(1)] Id used to store function on disk. Default is digest(fun).

pars

[list] Parameter list for job function.

name

[character(1)] Alias name for this job.

seed

[integer(1)] Random seed for job.