opStopSet
(interface{})
| 280 | |
| 281 | // opStopSet |
| 282 | func (info *RuntimeInfo) opResetSet(interface{}) error { |
| 283 | info.CommitID = "" |
| 284 | info.UserID = "" |
| 285 | info.Concurrency = 0 |
| 286 | info.ConcurrentMode = info.DefaultConcurrentMode |
| 287 | info.updateLastResetTime() |
| 288 | return nil |
| 289 | } |
| 290 | |
| 291 | // CAS check and set runtime info |
| 292 | func (info *RuntimeInfo) CAS(opType CASOpType, args interface{}) (err error) { |
nothing calls this directly
no test coverage detected