public void doVerb(Message message)
{
byte[] bytes = (byte[])message.getMessageBody()[0];
/* Obtain a Row Mutation Context from TLS */
RowMutationContext rowMutationCtx = tls_.get();
if ( rowMutationCtx == null )
{
rowMutationCtx = new RowMutationContext();
tls_.set(rowMutationCtx);
}
rowMutationCtx.buffer_.reset(bytes, bytes.length);
try