ydb-go-sdk
ydb-go-sdk copied to clipboard
Go: Operation service client
For example
operations, err := db.Operation().ListOperations(ctx)
for _, op := range operations {
fmt.Println(op.Info())
if true {
op.Cancel(ctx)
} else {
op.Forget(ctx)
}
}