Method
setSuspendedProbe
(boolean suspended_probe)
Source from the content-addressed store, hash-verified
| 505 | } |
| 506 | |
| 507 | void setSuspendedProbe(boolean suspended_probe) { |
| 508 | // since the key doesn't change, we are safe to lock on it and we avoid |
| 509 | // locking the entire object. TODO - still may be some issues with behavior. |
| 510 | synchronized(key) { |
| 511 | this.suspended_probe = suspended_probe; |
| 512 | } |
| 513 | } |
| 514 | |
| 515 | /** |
| 516 | * Package private constructor for RPCs that aren't for any region. |
Tested by
no test coverage detected