MCPcopy Index your code
hub / github.com/grpc/grpc-java / newBuilder

Method newBuilder

api/src/main/java/io/grpc/Attributes.java:91–95  ·  view source on GitHub ↗

Create a new builder that is pre-populated with the content from a given container. @deprecated Use Attributes#toBuilder() on the Attributes instance instead. This method will be removed in the future.

(Attributes base)

Source from the content-addressed store, hash-verified

89 * This method will be removed in the future.
90 */
91 @Deprecated
92 public static Builder newBuilder(Attributes base) {
93 checkNotNull(base, "base");
94 return new Builder(base);
95 }
96
97 /**
98 * Create a new builder.

Calls 1

checkNotNullMethod · 0.80