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

Method write

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

Writes the data structure to the specified output. @param out output stream @throws IOException I/O exception

(final DataOutput out)

Source from the content-addressed store, hash-verified

78 * @throws IOException I/O exception
79 */
80 public void write(final DataOutput out) throws IOException {
81 out.writeTokens(keys);
82 out.writeNums(next);
83 out.writeNums(buckets);
84 out.writeNum(size);
85 }
86
87 /**
88 * Stores the specified key if it has not been stored before.

Callers 2

writeHeaderMethod · 0.45
writePayloadMethod · 0.45

Calls 3

writeTokensMethod · 0.80
writeNumsMethod · 0.80
writeNumMethod · 0.45

Tested by

no test coverage detected