CommitCEntityContainerpublic class CommitCEntityContainer extends EntityContainer
Constructors Summary |
---|
protected CommitCEntityContainer(EjbDescriptor desc, ClassLoader loader)This constructor is called from the JarManager when a Jar is deployed.
super(desc, loader);
|
Methods Summary |
---|
protected void | addReadyEJB(EntityContextImpl context)
passivateAndPoolEJB(context);
| protected void | createEJBObjectStores(int cacheSize, int numberOfVictimsToSelect, long idleTimeout)
super.defaultCacheEJBO = false;
super.createEJBObjectStores(cacheSize, numberOfVictimsToSelect, idleTimeout);
| protected void | createReadyStore(int cacheSize, int numberOfVictimsToSelect, float loadFactor, long idleTimeout)
readyStore = null;
| protected void | destroyReadyStoreOnUndeploy()
readyStore = null;
| protected EntityContextImpl | getReadyEJB(Invocation inv)
Object primaryKey = inv.ejbObject.getKey();
return activateEJBFromPool(primaryKey, inv);
| protected void | removeContextFromReadyStore(java.lang.Object primaryKey, EntityContextImpl context)
// There is nothing to remove as we don't have a readyStore
|
|