Uses of Interface
com.hazelcast.jet.Job

Packages that use Job
Package
Description
Hazelcast Jet is a distributed computation engine running on top of Hazelcast IMDG technology.
  • Uses of Job in com.hazelcast.jet

    Methods in com.hazelcast.jet that return Job
    Modifier and Type
    Method
    Description
    JetService.getJob(long jobId)
    Returns the job with the given id or null if no such job could be found.
    default Job
    JetService.getJob(String name)
    Returns the active or last submitted job with the given name or null if no such job could be found.
    default Job
    JetService.newJob(DAG dag)
    Creates and returns a Jet job based on the supplied DAG.
    JetService.newJob(DAG dag, JobConfig config)
    Creates and returns a Jet job based on the supplied DAG and job configuration.
    default Job
    JetService.newJob(Pipeline pipeline)
    Creates and returns an executable job based on the supplied pipeline.
    JetService.newJob(Pipeline pipeline, JobConfig config)
    Creates and returns a Jet job based on the supplied pipeline and job configuration.
    JetService.newJobIfAbsent(DAG dag, JobConfig config)
    Creates and returns a Jet job based on the supplied DAG and job configuration.
    JetService.newJobIfAbsent(Pipeline pipeline, JobConfig config)
    Creates and returns a Jet job based on the supplied pipeline and job configuration.
    default Job
    JetService.newLightJob(DAG dag)
    Submits a job defined in the Core API with a default config.
    JetService.newLightJob(DAG dag, JobConfig config)
    Submits a job defined in the Core API.
    default Job
    JetService.newLightJob(Pipeline p)
    Submits a new light job with a default config.
    JetService.newLightJob(Pipeline p, JobConfig config)
    Submits a light job for execution.
    Methods in com.hazelcast.jet that return types with arguments of type Job
    Modifier and Type
    Method
    Description
    JetService.getJobs()
    Returns all submitted jobs.
    JetService.getJobs(String name)
    Returns all jobs submitted with the given name, ordered in descending order by submission time.