blob: b1f619a4c9790c08964270c23eeea867a03b6543 [file] [log] [blame]
/*
* 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.
*/
#pragma once
#ifndef GEODE_TRANSACTIONALOPERATION_H_
#define GEODE_TRANSACTIONALOPERATION_H_
#include <vector>
#include <geode/Serializable.hpp>
#include <geode/internal/geode_globals.hpp>
namespace apache {
namespace geode {
namespace client {
enum ServerRegionOperation {
GF_CONTAINS_KEY,
GF_CONTAINS_VALUE,
GF_CONTAINS_VALUE_FOR_KEY,
GF_DESTROY, // includes REMOVE(k,v)
GF_EXECUTE_FUNCTION,
GF_GET,
GF_GET_ENTRY,
GF_GET_ALL,
GF_INVALIDATE,
GF_REMOVE,
GF_KEY_SET,
GF_CREATE,
GF_PUT, // includes PUT_IF_ABSENT
GF_PUT_ALL
};
class CacheableKey;
class CacheImpl;
class TransactionalOperation {
public:
TransactionalOperation(
ServerRegionOperation op, const char* regionName,
std::shared_ptr<CacheableKey> key,
std::shared_ptr<std::vector<std::shared_ptr<Cacheable>>> arguments);
virtual ~TransactionalOperation();
std::shared_ptr<Cacheable> replay(CacheImpl* cache);
private:
ServerRegionOperation m_operation;
const char* m_regionName;
std::shared_ptr<CacheableKey> m_key;
std::shared_ptr<std::vector<std::shared_ptr<Cacheable>>> m_arguments;
};
} // namespace client
} // namespace geode
} // namespace apache
#endif // GEODE_TRANSACTIONALOPERATION_H_