MCPcopy Create free account
hub / github.com/grpc/grpc-java / toString

Method toString

api/src/main/java/io/grpc/CallOptions.java:526–541  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls 2

isWaitForReadyMethod · 0.95
addMethod · 0.65

Tested by

no test coverage detected