blob: 5c3af7d90c179210348f283cf72c2a1f59c303bd [file] [log] [blame]
using System;
namespace Apache
{
namespace Geode
{
namespace NetCore
{
public interface ICacheFactory : IDisposable
{
IGeodeCache CreateCache();
ICacheFactory SetProperty(String name, String value);
IAuthInitialize AuthInitialize { set; }
bool PdxIgnoreUnreadFields { set; }
bool PdxReadSerialized { set; }
String Version { get; }
String ProductDescription { get; }
}
}
}
}