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

Method item

basex-api/src/main/java/org/basex/query/func/ws/WsDelete.java:16–22  ·  view source on GitHub ↗
(final QueryContext qc, final InputInfo ii)

Source from the content-addressed store, hash-verified

14 */
15public final class WsDelete extends WsFn {
16 @Override
17 public Item item(final QueryContext qc, final InputInfo ii) throws QueryException {
18 final WebSocket client = client(qc);
19 final String key = toString(arg(1), qc);
20 client.atts.remove(key);
21 return Empty.VALUE;
22 }
23}

Callers

nothing calls this directly

Calls 4

toStringMethod · 0.65
removeMethod · 0.65
clientMethod · 0.45
argMethod · 0.45

Tested by

no test coverage detected