Returns: (string): 此RowMutation对象的rowkey,例如可用在回调中
(self)
| 382 | lib.tera_row_mutation_delete_row(self.mutation) |
| 383 | |
| 384 | def RowKey(self): |
| 385 | """ |
| 386 | Returns: |
| 387 | (string): 此RowMutation对象的rowkey,例如可用在回调中 |
| 388 | """ |
| 389 | value = POINTER(c_ubyte)() |
| 390 | vallen = c_uint64() |
| 391 | lib.tera_row_mutation_rowkey(self.mutation, |
| 392 | byref(value), byref(vallen)) |
| 393 | return copy_string_to_user(value, long(vallen.value)) |
| 394 | |
| 395 | def SetCallback(self, callback): |
| 396 | """ 设置回调 |
no test coverage detected