blob: c2991abaab4bb275ec8b1b8e199d9e074ee5a5b2 [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.
*/
#ifdef CSTX_COMMENTED
#include "TransactionEvent.hpp"
#include "Log.hpp"
#include "impl/SafeConvert.hpp"
#include "TransactionId.hpp"
#include "Cache.hpp"
#include "EntryEvent.hpp"
#include "Cache.hpp"
#include "impl/CacheResolver.hpp"
using namespace System;
using namespace Apache::Geode::Client;
namespace Apache
{
namespace Geode
{
namespace Client
{
generic<class TKey, class TValue>
Cache^ TransactionEvent<TKey, TValue>::Cache::get( )
{
auto cache = NativePtr->getCache();
return CacheResolver::Lookup(cache);
}
generic<class TKey, class TValue>
Apache::Geode::Client::TransactionId^ TransactionEvent<TKey, TValue>::TransactionId::get( )
{
std::shared_ptr<apache::geode::client::TransactionId> & nativeptr(
NativePtr->getTransactionId( ) );
return Apache::Geode::Client::TransactionId::Create(
nativeptr.get() );
}
generic<class TKey, class TValue>
array<EntryEvent<TKey, TValue>^>^ TransactionEvent<TKey, TValue>::Events::get( )
{
std::vector<std::shared_ptr<apache::geode::client::EntryEvent>> vee;
vee = NativePtr->getEvents();
array<EntryEvent<TKey, TValue>^>^ events =
gcnew array<EntryEvent<TKey, TValue>^>( vee.size( ) );
// Loop through the unmanaged event objects to convert them to the managed generic objects.
for( System::Int32 index = 0; index < vee.size( ); index++ )
{
std::shared_ptr<apache::geode::client::EntryEvent>& nativeptr( vee[ index ] );
EntryEvent<TKey, TValue> entryEvent( nativeptr.get() );
events[ index ] = (%entryEvent);
}
return events;
} // namespace Client
} // namespace Geode
} // namespace Apache
} //namespace
#endif