Get load. @return the load that is a combination of sub loads.
()
| 62 | * @return the load that is a combination of sub loads. |
| 63 | */ |
| 64 | public double getLoad() { |
| 65 | if (!hasMetrics) { |
| 66 | return 1.0; |
| 67 | } |
| 68 | return connectionLoad > boltLoad ? connectionLoad : boltLoad; |
| 69 | } |
| 70 | |
| 71 | @Override |
| 72 | public String toString() { |
nothing calls this directly
no outgoing calls
no test coverage detected