MCPcopy Create free account
hub / github.com/BaseXdb/basex / read

Method read

basex-core/src/main/java/org/basex/util/hash/TokenSet.java:68–73  ·  view source on GitHub ↗

Reads the data structure from the specified input. @param in input stream @throws IOException I/O exception

(final DataInput in)

Source from the content-addressed store, hash-verified

66 * @throws IOException I/O exception
67 */
68 public void read(final DataInput in) throws IOException {
69 keys = in.readTokens();
70 next = in.readNums();
71 buckets = in.readNums();
72 size = in.readNum();
73 }
74
75 /**
76 * Writes the data structure to the specified output.

Callers 1

TokenSetMethod · 0.95

Calls 3

readTokensMethod · 0.80
readNumsMethod · 0.80
readNumMethod · 0.45

Tested by

no test coverage detected