mirror of
https://github.com/ceph/go-ceph
synced 2024-12-25 15:42:30 +00:00
863d71caa5
These apis are now stable as per the stability plan. Signed-off-by: John Mulligan <jmulligan@redhat.com>
16 lines
265 B
Go
16 lines
265 B
Go
package rados
|
|
|
|
// #cgo LDFLAGS: -lrados
|
|
// #include <rados/librados.h>
|
|
// #include <stdlib.h>
|
|
//
|
|
import "C"
|
|
|
|
// Remove object.
|
|
//
|
|
// Implements:
|
|
// void rados_write_op_remove(rados_write_op_t write_op)
|
|
func (w *WriteOp) Remove() {
|
|
C.rados_write_op_remove(w.op)
|
|
}
|