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

com.couchbase.client.core.api.query.CoreQueryMetaData Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
/*
 * Copyright (c) 2019 Couchbase, Inc.
 *
 * Licensed 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.couchbase.client.core.api.query;

import com.couchbase.client.core.annotation.Stability;
import com.couchbase.client.core.error.DecodingFailureException;

import java.util.List;
import java.util.Optional;

@Stability.Internal
public abstract class CoreQueryMetaData {

  /**
   * Returns the request identifier string of the query request
   */
  public abstract String requestId();

  /**
   * Returns the client context identifier string set on the query request.
   */
  public abstract String clientContextId();

  /**
   * Returns the raw query execution status as returned by the query engine
   */
  public abstract CoreQueryStatus status();

  /**
   * Returns the signature.
   * 

* It is returned as an Optional which will be empty if no signature information is available. * * @throws DecodingFailureException when the signature cannot be decoded successfully */ public abstract Optional signature(); /** * Returns the profiling information. *

* It is returned as an Optional which will be empty if no profile information is available. * * @throws DecodingFailureException when the profile cannot be decoded successfully */ public abstract Optional profile(); /** * Returns the {@link CoreQueryMetrics} as returned by the query engine if enabled. * * @throws DecodingFailureException when the metrics cannot be decoded successfully */ public abstract Optional metrics(); /** * Returns any warnings returned by the query engine. *

* It is returned as an Optional which will be empty if no warnings were returned * * @throws DecodingFailureException when the warnings cannot be decoded successfully */ public abstract List warnings(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy