Interface MultiCheckAndSetRequest


  • @Immutable
    public interface MultiCheckAndSetRequest
    A request to be supplied to KeyValueService.mulitCheckAndSet. tableRef() the TableReference on which updates are to be performed. rowName() the Cell row to update. expected() expected current values of cells. updates() the desired values for cells.
    • Method Detail

      • rowName

        byte[] rowName()
      • expected

        java.util.Map<Cell,​byte[]> expected()
      • updates

        java.util.Map<Cell,​byte[]> updates()
      • check

        @Check
        default void check()
      • builder

        static com.palantir.atlasdb.keyvalue.api.ImmutableMultiCheckAndSetRequest.Builder builder()