Defines a protocol to perform multi row transactions. See {@link MultiRowMutationEndpoint} for the implementation. See {@link HRegion#mutateRowsWithLocks(java.util.Collection,java.util.Collection)}for details and limitations. Example:
List mutations = ...; Put p1 = new Put(row1); Put p2 = new Put(row2); ... mutations.add(p1); mutations.add(p2); MultiRowMutationProtocol mrOp = t.coprocessorProxy( MultiRowMutationProtocol.class, row1); mrOp.mutateRows(mutations);
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.