(parent ksuid.KSUID, author, message string, ids []ksuid.KSUID, retries int)
| 64 | } |
| 65 | |
| 66 | func NewDeleteVectorsObject(parent ksuid.KSUID, author, message string, ids []ksuid.KSUID, retries int) *Object { |
| 67 | o := NewObject(parent, author, message, super.Null, retries) |
| 68 | for _, id := range ids { |
| 69 | o.appendDeleteVector(id) |
| 70 | } |
| 71 | return o |
| 72 | } |
| 73 | |
| 74 | func (o *Object) append(action Action) { |
| 75 | o.Actions = append(o.Actions, action) |
no test coverage detected