Enum JobType (0.9.0)

public enum JobType extends Enum<JobType> implements ProtocolMessageEnum

Specifies the processing model used by a [google.dataflow.v1beta3.Job], which determines the way the Job is managed by the Cloud Dataflow service (how workers are scheduled, how inputs are sharded, etc).

Protobuf enum google.dataflow.v1beta3.JobType

Implements

ProtocolMessageEnum

Static Fields

NameDescription
JOB_TYPE_BATCH

A batch job with a well-defined end point: data is read, data is processed, data is written, and the job is done.

JOB_TYPE_BATCH = 1;

JOB_TYPE_BATCH_VALUE

A batch job with a well-defined end point: data is read, data is processed, data is written, and the job is done.

JOB_TYPE_BATCH = 1;

JOB_TYPE_STREAMING

A continuously streaming job with no end: data is read, processed, and written continuously.

JOB_TYPE_STREAMING = 2;

JOB_TYPE_STREAMING_VALUE

A continuously streaming job with no end: data is read, processed, and written continuously.

JOB_TYPE_STREAMING = 2;

JOB_TYPE_UNKNOWN

The type of the job is unspecified, or unknown.

JOB_TYPE_UNKNOWN = 0;

JOB_TYPE_UNKNOWN_VALUE

The type of the job is unspecified, or unknown.

JOB_TYPE_UNKNOWN = 0;

UNRECOGNIZED

Static Methods

NameDescription
forNumber(int value)
getDescriptor()
internalGetValueMap()
valueOf(Descriptors.EnumValueDescriptor desc)
valueOf(int value)

Deprecated. Use #forNumber(int) instead.

valueOf(String name)
values()

Methods

NameDescription
getDescriptorForType()
getNumber()
getValueDescriptor()