blob: 88816c58061ba9e7218d4b10d8de5d277d1a25e2 [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.
*/
#include <geode/PdxSerializable.hpp>
#include <geode/CacheableString.hpp>
#include <geode/internal/CacheableKeys.hpp>
#include "PdxHelper.hpp"
namespace apache {
namespace geode {
namespace client {
std::string PdxSerializable::toString() const { return getClassName(); }
bool PdxSerializable::operator==(const CacheableKey& other) const {
return (this == &other);
}
int32_t PdxSerializable::hashcode() const {
int64_t hash = static_cast<int64_t>((intptr_t)this);
return apache::geode::client::internal::hashcode(hash);
}
} // namespace client
} // namespace geode
} // namespace apache