blob: ab16a0b5fc95cec92ac018e3f5810a0346c5b613 [file] [log] [blame]
#include "FunctionServiceImpl.hpp"
#include "ExecutionImpl.hpp"
#include "../PoolManager.hpp"
using namespace gemfire ;
FunctionServiceImpl::FunctionServiceImpl(ProxyCachePtr proxyCache)
{
m_proxyCache = proxyCache;
}
FunctionServicePtr FunctionServiceImpl::getFunctionService(ProxyCachePtr proxyCache)
{
FunctionServicePtr fPtr(new FunctionServiceImpl(proxyCache));
return fPtr;
}