Class QueryResource


  • @Path("/")
    public class QueryResource
    extends Object
    API to cancel query running on the server, given a queryId.
    • Constructor Detail

      • QueryResource

        public QueryResource()
    • Method Detail

      • cancelQuery

        @DELETE
        @Path("/query/{queryId}")
        @Produces("application/json")
        public String cancelQuery​(@PathParam("queryId")
                                  String queryId)
      • getRunningQueryIds

        @GET
        @Path("/queries/id")
        @Produces("application/json")
        public Set<String> getRunningQueryIds()