Enum ThrowingJobGraphWriter
- java.lang.Object
-
- java.lang.Enum<ThrowingJobGraphWriter>
-
- org.apache.flink.runtime.jobmanager.ThrowingJobGraphWriter
-
- All Implemented Interfaces:
Serializable,Comparable<ThrowingJobGraphWriter>,GloballyCleanableResource,LocallyCleanableResource,JobGraphWriter
public enum ThrowingJobGraphWriter extends Enum<ThrowingJobGraphWriter> implements JobGraphWriter
JobGraphWriterimplementation which does not allow to storeJobGraph.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidputJobGraph(JobGraph jobGraph)Adds theJobGraphinstance.voidputJobResourceRequirements(org.apache.flink.api.common.JobID jobId, JobResourceRequirements jobResourceRequirements)Persistjob resource requirementsfor the given job.static ThrowingJobGraphWritervalueOf(String name)Returns the enum constant of this type with the specified name.static ThrowingJobGraphWriter[]values()Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface org.apache.flink.runtime.jobmanager.JobGraphWriter
globalCleanupAsync, localCleanupAsync
-
-
-
-
Enum Constant Detail
-
INSTANCE
public static final ThrowingJobGraphWriter INSTANCE
-
-
Method Detail
-
values
public static ThrowingJobGraphWriter[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ThrowingJobGraphWriter c : ThrowingJobGraphWriter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ThrowingJobGraphWriter valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
putJobGraph
public void putJobGraph(JobGraph jobGraph)
Description copied from interface:JobGraphWriterAdds theJobGraphinstance.If a job graph with the same
JobIDexists, it is replaced.- Specified by:
putJobGraphin interfaceJobGraphWriter
-
putJobResourceRequirements
public void putJobResourceRequirements(org.apache.flink.api.common.JobID jobId, JobResourceRequirements jobResourceRequirements)Description copied from interface:JobGraphWriterPersistjob resource requirementsfor the given job.- Specified by:
putJobResourceRequirementsin interfaceJobGraphWriter- Parameters:
jobId- job the given requirements belong tojobResourceRequirements- requirements to persist
-
-