Package org.elasticsearch.cluster
Class AbstractNamedDiffable<T extends NamedDiffable<T>>
java.lang.Object
org.elasticsearch.cluster.AbstractNamedDiffable<T>
- All Implemented Interfaces:
Diffable<T>
,NamedWriteable
,Writeable
- Direct Known Subclasses:
PersistentTasksCustomMetadata
,RepositoriesMetadata
,RepositoryCleanupInProgress
,RestoreInProgress
,SnapshotDeletionsInProgress
,SnapshotsInProgress
public abstract class AbstractNamedDiffable<T extends NamedDiffable<T>>
extends Object
implements Diffable<T>, NamedWriteable
Abstract diffable object with simple diffs implementation that sends the entire object if object has changed or
nothing is object remained the same. Comparing to AbstractDiffable, this class also works with NamedWriteables
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns serializable object representing differences between this and previousStateget()
static <T extends NamedDiffable<T>>
NamedDiff<T>readDiffFrom(Class<? extends T> tClass, String name, StreamInput in)
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.elasticsearch.common.io.stream.NamedWriteable
getWriteableName
-
Constructor Details
-
AbstractNamedDiffable
public AbstractNamedDiffable()
-
-
Method Details
-
diff
Description copied from interface:Diffable
Returns serializable object representing differences between this and previousState- Specified by:
diff
in interfaceDiffable<T extends NamedDiffable<T>>
-
readDiffFrom
public static <T extends NamedDiffable<T>> NamedDiff<T> readDiffFrom(Class<? extends T> tClass, String name, StreamInput in) throws IOException- Throws:
IOException
-
get
-