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

kv-4.0.9.src.oracle.kv.table.TableOperationResult Maven / Gradle / Ivy

Go to download

Oracle NoSQL Database Client - supplies build and runtime support for the client side of the Oracle NoSQL Database. Note that a running Oracle NoSQL Database Server (store) is required to do anything meaningful with this client.

There is a newer version: 18.3.10
Show newest version
/*-
 *
 *  This file is part of Oracle NoSQL Database
 *  Copyright (C) 2011, 2016 Oracle and/or its affiliates.  All rights reserved.
 *
 * If you have received this file as part of Oracle NoSQL Database the
 * following applies to the work as a whole:
 *
 *   Oracle NoSQL Database server software is free software: you can
 *   redistribute it and/or modify it under the terms of the GNU Affero
 *   General Public License as published by the Free Software Foundation,
 *   version 3.
 *
 *   Oracle NoSQL Database is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *   Affero General Public License for more details.
 *
 * If you have received this file as part of Oracle NoSQL Database Client or
 * distributed separately the following applies:
 *
 *   Oracle NoSQL Database client software is free software: you can
 *   redistribute it and/or modify it under the terms of the Apache License
 *   as published by the Apache Software Foundation, version 2.0.
 *
 * You should have received a copy of the GNU Affero General Public License
 * and/or the Apache License in the LICENSE file along with Oracle NoSQL
 * Database client or server distribution.  If not, see
 * 
 * or
 * .
 *
 * An active Oracle commercial licensing agreement for this product supersedes
 * these licenses and in such case the license notices, but not the copyright
 * notice, may be removed by you in connection with your distribution that is
 * in accordance with the commercial licensing terms.
 *
 * For more information please contact:
 *
 * [email protected]
 *
 */

package oracle.kv.table;

import oracle.kv.Version;

/**
 * The Result associated with the execution of a TableOperation.
 *
 * @see TableOperationFactory
 * @see TableAPI#execute execute
 *
 * @since 3.0
 */
public interface TableOperationResult {

    /**
     * Whether the operation succeeded.  A put or delete operation may be
     * unsuccessful if the row or version was not matched.
     */
    boolean getSuccess();

    /**
     * For a put operation, the version of the new row.
     *
     * 

Is null if any of the following conditions are true:

*
    *
  • The operation is not a put operation. *
  • *
  • The put operation did not succeed. *
  • *
*/ Version getNewVersion(); /** * For a put or delete operation, the version of the previous row * associated with the key. * *

Is null if any of the following conditions are true:

*
    *
  • The operation is not a put or delete operation. *
  • *
  • A previous value did not exist for the given row. *
  • *
  • The {@code prevReturn} {@link ReturnRow} parameter * specified that the version should not be returned. *
  • *
  • For a {@link TableOperationFactory#createPutIfVersion putIfVersion} * or {@link TableOperationFactory#createDeleteIfVersion deleteIfVersion} * operation, the {@code matchVersion} parameter matched the version of the * previous value. *
  • *
*/ Version getPreviousVersion(); /** * For a put or delete operation, the previous value associated with * the row. * *

Is null if any of the following conditions are true:

*
    *
  • The operation is not a put or delete operation. *
  • *
  • A previous value did not exist for the given row. *
  • *
  • The {@code prevReturn} {@link ReturnRow} parameter * specified that the row should not be returned. *
  • *
  • For a {@link TableOperationFactory#createPutIfVersion putIfVersion} * or {@link TableOperationFactory#createDeleteIfVersion deleteIfVersion} * operation, the {@code matchVersion} parameter matched the version of the * previous value. *
  • *
*/ Row getPreviousRow(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy