![JAR search and dependency download from the Maven repository](/logo.png)
org.basex.query.func.ws.WsDelete Maven / Gradle / Ivy
package org.basex.query.func.ws;
import org.basex.http.ws.*;
import org.basex.query.*;
import org.basex.query.value.item.*;
import org.basex.query.value.seq.*;
import org.basex.util.*;
/**
* Function implementation.
*
* @author BaseX Team, BSD License
* @author Christian Gruen
*/
public final class WsDelete extends WsFn {
@Override
public Item item(final QueryContext qc, final InputInfo ii) throws QueryException {
final WebSocket client = client(qc);
final String key = toString(arg(1), qc);
client.atts.remove(key);
return Empty.VALUE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy