Package com.usatiuk.objects.stores
Record Class PendingWrite
java.lang.Object
java.lang.Record
com.usatiuk.objects.stores.PendingWrite
- All Implemented Interfaces:
Data<JDataVersionedWrapper>
,MaybeTombstone<JDataVersionedWrapper>
,PendingWriteEntry
public record PendingWrite(JDataVersionedWrapper value, long bundleId)
extends Record
implements PendingWriteEntry, Data<JDataVersionedWrapper>
-
Constructor Summary
ConstructorsConstructorDescriptionPendingWrite
(JDataVersionedWrapper value, long bundleId) Creates an instance of aPendingWrite
record class. -
Method Summary
Modifier and TypeMethodDescriptionlong
bundleId()
Returns the value of thebundleId
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.value()
Returns the value of thevalue
record component.
-
Constructor Details
-
PendingWrite
Creates an instance of aPendingWrite
record class.- Parameters:
value
- the value for thevalue
record componentbundleId
- the value for thebundleId
record 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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
value
Returns the value of thevalue
record component.- Specified by:
value
in interfaceData<JDataVersionedWrapper>
- Returns:
- the value of the
value
record component
-
bundleId
public long bundleId()Returns the value of thebundleId
record component.- Specified by:
bundleId
in interfacePendingWriteEntry
- Returns:
- the value of the
bundleId
record component
-