Package io.atomix.primitive.service
Interface BackupInput
- All Superinterfaces:
AutoCloseable,io.atomix.storage.buffer.BufferInput<BackupInput>
public interface BackupInput extends io.atomix.storage.buffer.BufferInput<BackupInput>
Backup input.
-
Method Summary
Modifier and Type Method Description <U> UreadObject()Deserializes an object from the input.Methods inherited from interface io.atomix.storage.buffer.BufferInput
close, hasRemaining, position, read, read, read, read, read, readBoolean, readByte, readBytes, readChar, readDouble, readFloat, readInt, readLong, readMedium, readObject, readShort, readString, readString, readUnsignedByte, readUnsignedInt, readUnsignedMedium, readUnsignedShort, readUTF8, remaining, skip
-
Method Details
-
readObject
<U> U readObject()Deserializes an object from the input.- Type Parameters:
U- the object type- Returns:
- the object to deserialize
-