()
| 524 | } |
| 525 | |
| 526 | @Override |
| 527 | public String toString() { |
| 528 | return MoreObjects.toStringHelper(this) |
| 529 | .add("deadline", deadline) |
| 530 | .add("authority", authority) |
| 531 | .add("callCredentials", credentials) |
| 532 | .add("executor", executor != null ? executor.getClass() : null) |
| 533 | .add("compressorName", compressorName) |
| 534 | .add("customOptions", Arrays.deepToString(customOptions)) |
| 535 | .add("waitForReady", isWaitForReady()) |
| 536 | .add("maxInboundMessageSize", maxInboundMessageSize) |
| 537 | .add("maxOutboundMessageSize", maxOutboundMessageSize) |
| 538 | .add("onReadyThreshold", onReadyThreshold) |
| 539 | .add("streamTracerFactories", streamTracerFactories) |
| 540 | .toString(); |
| 541 | } |
| 542 | } |
nothing calls this directly
no test coverage detected