(id string)
| 128 | } |
| 129 | |
| 130 | func (t *BaseTask) WithCompactionID(id string) *BaseTask { |
| 131 | t.lock.Lock() |
| 132 | t.compactionID = id |
| 133 | t.lock.Unlock() |
| 134 | return t |
| 135 | } |
| 136 | |
| 137 | func (t *BaseTask) GetId() string { |
| 138 | return t.Id |
no outgoing calls
no test coverage detected