Package com.io7m.looseleaf.protocol.v1
Record Class LLv1RUD
java.lang.Object
java.lang.Record
com.io7m.looseleaf.protocol.v1.LLv1RUD
- Record Components:
read
- The keys to readupdate
- The keys to updatedelete
- The keys to delete
- All Implemented Interfaces:
LLv1MessageType
public record LLv1RUD(Set<String> read, Map<String,String> update, Set<String> delete)
extends Record
implements LLv1MessageType
A transactional read-update-delete operation. First, all keys in
read
will be read, then all keys in update
will be updated, and finally
all keys in delete
will be deleted.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondelete()
Returns the value of thedelete
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.read()
Returns the value of theread
record component.final String
toString()
Returns a string representation of this record class.update()
Returns the value of theupdate
record component.
-
Constructor Details
-
LLv1RUD
A transactional read-update-delete operation. First, all keys inread
will be read, then all keys inupdate
will be updated, and finally all keys indelete
will be deleted.- Parameters:
read
- The keys to readupdate
- The keys to updatedelete
- The keys to delete
-
-
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 withObjects::equals(Object,Object)
. -
read
Returns the value of theread
record component.- Returns:
- the value of the
read
record component
-
update
Returns the value of theupdate
record component.- Returns:
- the value of the
update
record component
-
delete
Returns the value of thedelete
record component.- Returns:
- the value of the
delete
record component
-