Record Class BackupResponse
java.lang.Object
java.lang.Record
io.camunda.zeebe.gateway.admin.backup.BackupResponse
- Record Components:
created- true when backup is created, false when it is rejected because the checkpoint already existscheckpointId- if created = false then the latest checkpointId in the partition, otherwise same as the backupId in the request.
Response of take backup request, received from the broker.
-
Constructor Summary
ConstructorsConstructorDescriptionBackupResponse(boolean created, long checkpointId) Creates an instance of aBackupResponserecord class. -
Method Summary
Modifier and TypeMethodDescriptionlongReturns the value of thecheckpointIdrecord component.booleancreated()Returns the value of thecreatedrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
BackupResponse
public BackupResponse(boolean created, long checkpointId) Creates an instance of aBackupResponserecord class.- Parameters:
created- the value for thecreatedrecord componentcheckpointId- the value for thecheckpointIdrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with '=='. -
created
public boolean created()Returns the value of thecreatedrecord component.- Returns:
- the value of the
createdrecord component
-
checkpointId
public long checkpointId()Returns the value of thecheckpointIdrecord component.- Returns:
- the value of the
checkpointIdrecord component
-