Class Job
A single computation with its configuration and result
Declaration
Documentation
A single computation with its configuration and result
Attributes
* config - `OrderedDict` of function parameters (use with `Builder.run_with_config`)
* value - resulting value of the computation
* job_setup - setup for the job
* created - datetime when job was created
* comp_time - time of computation when job was created, or None if job was inserted
Methods
def __init__(self, builder_name, key, config) Declaration
def __init__(
self,
builder_name,
key,
config
):
def get_blob(self, name, default=_NO_VALUE) Declaration
def get_blob(
self,
name,
default=_NO_VALUE
):
Declaration
def get_blob_as_file(
self,
name,
target=None
):
Declaration
def get_object(
self,
name,
default=_NO_VALUE
):
Declaration
def get_text(
self,
name
):
Declaration
def set_job_id(
self,
job_id,
db,
state
):
def value(self) @property Declaration
@property
def value(
self):
Reexports