Package io.atomix.primitive.service
Interface BackupOutput
- All Superinterfaces:
AutoCloseable,io.atomix.storage.buffer.BufferOutput<BackupOutput>
public interface BackupOutput extends io.atomix.storage.buffer.BufferOutput<BackupOutput>
Backup output.
-
Method Summary
Modifier and Type Method Description <U> BackupOutputwriteObject(U object)Serializes an object to the output.Methods inherited from interface io.atomix.storage.buffer.BufferOutput
close, flush, write, write, write, write, write, writeBoolean, writeByte, writeBytes, writeChar, writeDouble, writeFloat, writeInt, writeLong, writeMedium, writeObject, writeShort, writeString, writeString, writeUnsignedByte, writeUnsignedInt, writeUnsignedMedium, writeUnsignedShort, writeUTF8
-
Method Details
-
writeObject
Serializes an object to the output.- Type Parameters:
U- the object type- Parameters:
object- the object to serialize- Returns:
- the backup output
-