MCPcopy Create free account
hub / github.com/apache/tomcat / readExternal

Method readExternal

java/org/apache/catalina/tribes/ByteMessage.java:79–84  ·  view source on GitHub ↗
(ObjectInput in)

Source from the content-addressed store, hash-verified

77 }
78
79 @Override
80 public void readExternal(ObjectInput in) throws IOException {
81 int length = in.readInt();
82 message = new byte[length];
83 in.readFully(message);
84 }
85
86 @Override
87 public void writeExternal(ObjectOutput out) throws IOException {

Callers

nothing calls this directly

Calls 2

readIntMethod · 0.80
readFullyMethod · 0.45

Tested by

no test coverage detected