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

Method InternalLogId

api/src/main/java/io/grpc/InternalLogId.java:67–73  ·  view source on GitHub ↗
(String typeName, String details, long id)

Source from the content-addressed store, hash-verified

65 private final long id;
66
67 InternalLogId(String typeName, String details, long id) {
68 checkNotNull(typeName, "typeName");
69 checkArgument(!typeName.isEmpty(), "empty type");
70 this.typeName = typeName;
71 this.details = details;
72 this.id = id;
73 }
74
75 public String getTypeName() {
76 return typeName;

Callers

nothing calls this directly

Calls 2

checkNotNullMethod · 0.80
isEmptyMethod · 0.45

Tested by

no test coverage detected