Search in sources :

Example 1 with VertexLabelRemoveJob

use of com.baidu.hugegraph.job.schema.VertexLabelRemoveJob in project incubator-hugegraph by apache.

the class SchemaTransaction method removeVertexLabel.

@Watched(prefix = "schema")
public Id removeVertexLabel(Id id) {
    LOG.debug("SchemaTransaction remove vertex label '{}'", id);
    SchemaJob callable = new VertexLabelRemoveJob();
    VertexLabel schema = this.getVertexLabel(id);
    return asyncRun(this.graph(), schema, callable);
}
Also used : VertexLabel(com.baidu.hugegraph.schema.VertexLabel) VertexLabelRemoveJob(com.baidu.hugegraph.job.schema.VertexLabelRemoveJob) SchemaJob(com.baidu.hugegraph.job.schema.SchemaJob) Watched(com.baidu.hugegraph.perf.PerfUtil.Watched)

Aggregations

SchemaJob (com.baidu.hugegraph.job.schema.SchemaJob)1 VertexLabelRemoveJob (com.baidu.hugegraph.job.schema.VertexLabelRemoveJob)1 Watched (com.baidu.hugegraph.perf.PerfUtil.Watched)1 VertexLabel (com.baidu.hugegraph.schema.VertexLabel)1