blob: 742542783e098bdd3af7adbf629b79611bbfdd8e [file] [log] [blame]
using System;
namespace Apache
{
namespace Geode
{
namespace DotNetCore
{
public interface IGeodeCache : IRegionService, IDisposable
{
bool GetPdxIgnoreUnreadFields();
bool GetPdxReadSerialized();
// void InitializeDeclarativeCache(String cacheXml);
// CacheTransactionManager CacheTransactionManager { get; }
// DistributedSystem DistributedSystem { get; }
String Name { get; }
PoolManager PoolManager { get; }
PoolFactory PoolFactory { get; }
void Close();
void Close(bool keepalive);
bool Closed { get; }
}
}
}
}