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 thedeleterecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.read()Returns the value of thereadrecord component.final StringtoString()Returns a string representation of this record class.update()Returns the value of theupdaterecord component.
-
Constructor Details
-
LLv1RUD
A transactional read-update-delete operation. First, all keys inreadwill be read, then all keys inupdatewill be updated, and finally all keys indeletewill be deleted.- Parameters:
read- The keys to readupdate- The keys to updatedelete- The keys to delete
-
-
Method Details
-
toString
-
hashCode
-
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
-
update
-
delete
-