static RefProxy <T> CreateRefProxy(FactoryPool <RefProxy <T> > pool) { return(new RefProxy <T>(pool)); }
static RefProxyPool() { _proxyPool = new FactoryPool <RefProxy <T> >(CreateProxy, 8); RefProxyPoolRegister.RegisterPool(_proxyPool); }
public RefProxy(FactoryPool <RefProxy <T> > sourcePool) { _sourcePool = sourcePool; }