Show / Hide Table of Contents

Class ReportedParallelism

Represents the level of parallelism in a WorkItem's input, reported by the worker.

Inheritance
object
ReportedParallelism
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Dataflow.v1b3.Data
Assembly: Google.Apis.Dataflow.v1b3.dll
Syntax
public class ReportedParallelism : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

IsInfinite

Specifies whether the parallelism is infinite. If true, "value" is ignored. Infinite parallelism means the service will assume that the work item can always be split into more non-empty work items by dynamic splitting. This is a work-around for lack of support for infinity by the current JSON-based Java RPC stack.

Declaration
[JsonProperty("isInfinite")]
public virtual bool? IsInfinite { get; set; }
Property Value
Type Description
bool?

Value

Specifies the level of parallelism in case it is finite.

Declaration
[JsonProperty("value")]
public virtual double? Value { get; set; }
Property Value
Type Description
double?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX