All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.datastax.dse.driver.internal.core.graph.BytecodeGraphStatement Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.datastax.dse.driver.internal.core.graph;

import com.datastax.dse.driver.api.core.graph.FluentGraphStatement;
import com.datastax.oss.driver.api.core.ConsistencyLevel;
import com.datastax.oss.driver.api.core.config.DriverExecutionProfile;
import com.datastax.oss.driver.api.core.cql.Statement;
import com.datastax.oss.driver.api.core.metadata.Node;
import java.nio.ByteBuffer;
import java.time.Duration;
import java.util.Collections;
import java.util.Map;
import org.apache.tinkerpop.gremlin.process.traversal.Bytecode;

/**
 * A dedicated statement implementation for implicit traversal execution via a {@link
 * DseGraphRemoteConnection}.
 *
 * 

This is a simplified version of {@link FluentGraphStatement} that exposes the bytecode * directly instead of the traversal. * *

This class is for internal use only. */ public class BytecodeGraphStatement extends GraphStatementBase { private final Bytecode bytecode; public BytecodeGraphStatement( Bytecode bytecode, DriverExecutionProfile executionProfile, String executionProfileName) { this( bytecode, null, null, null, Statement.NO_DEFAULT_TIMESTAMP, executionProfile, executionProfileName, Collections.emptyMap(), null, null, null, null, null, null); } private BytecodeGraphStatement( Bytecode bytecode, Boolean isIdempotent, Duration timeout, Node node, long timestamp, DriverExecutionProfile executionProfile, String executionProfileName, Map customPayload, String graphName, String traversalSource, String subProtocol, ConsistencyLevel consistencyLevel, ConsistencyLevel readConsistencyLevel, ConsistencyLevel writeConsistencyLevel) { super( isIdempotent, timeout, node, timestamp, executionProfile, executionProfileName, customPayload, graphName, traversalSource, subProtocol, consistencyLevel, readConsistencyLevel, writeConsistencyLevel); this.bytecode = bytecode; } public Bytecode getBytecode() { return bytecode; } @Override protected BytecodeGraphStatement newInstance( Boolean isIdempotent, Duration timeout, Node node, long timestamp, DriverExecutionProfile executionProfile, String executionProfileName, Map customPayload, String graphName, String traversalSource, String subProtocol, ConsistencyLevel consistencyLevel, ConsistencyLevel readConsistencyLevel, ConsistencyLevel writeConsistencyLevel) { return new BytecodeGraphStatement( bytecode, isIdempotent, timeout, node, timestamp, executionProfile, executionProfileName, customPayload, graphName, traversalSource, subProtocol, consistencyLevel, readConsistencyLevel, writeConsistencyLevel); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy